Files
beaglefw/syscall.hh
2013-07-13 21:09:30 +02:00

10 lines
141 B
C++

#ifndef _SYSCALL_HH_
#define _SYSCALL_HH_
#define SYSCALL_EXIT 0
#define SYSCALL_YIELD 1
extern "C" void syscall_handler(int num);
#endif