Switched to the system timer.
[tart.git] / include / asm.h
bloba891f2221b2925f7435636651a0ccadfb75988b1
1 #ifndef _ASM_H
2 #define _ASM_H
4 #define FUNCTION(x) .type x, STT_FUNC; x:
5 #define DATA(x) .type x, STT_OBJECT; x:
6 #define GLOBAL(x) .global x;
8 #endif /* _ASM_H */