syscalls.h
enum Syscall {
OPEN_FILE,
READ_FILE,
CLOSE_FILE
};
syscalls.s
extern WRITE_TO_SCREEN
global write_to_screen
write_to_screen:
mov eax, WRITE_TO_SCREEN
mov ebx, [esp+4]
int 0x80
ret
Gives me this error:
stdlib/syscalls.o: In function `write_to_screen':
stdlib/syscalls.s:(.text+0x1): undefined reference to `WRITE_TO_SCREEN'
make: *** [kernel.elf] Error 1
No there isn't.
You could do something like:
enum_support.h
syscalls.h
And then have
test.c
andtest.s
includesyscalls.h
gcc -c test.c
gcc -c test.s
Not sure it's very helpful, but I don't know any other way to share enums (which are non existent in assembly).
You could do
cpp test.c
orcpp -D__ASSEMBLER__ test.s
to see the emitted code.