blob: aa2212e17aabada0e226211967d00e75830c307c [file] [log] [blame]
swissChili52a03d82021-07-18 15:22:14 -07001;;;; Bluejay system call client library implementation.
2
3 ;; System call numbers
4 %include "sys.inc"
5
6 [bits 32]
7 [global sys_giveup]
8sys_giveup:
9 mov eax, SYS_GIVEUP
10 int SYS_INT
11 ret ; Will return here after the task is re-scheduled