fox32os/fox32os.def
Ry 9d510e51b7 Introduce new memory allocator, now with the ability to free memory!!
This is a super simple linked list memory allocator, written with
lots of help from my friend hyenasky.
2022-06-23 00:30:59 -07:00

17 lines
354 B
Modula-2

; fox32os routine definitions
; system jump table
get_os_version: jmp [0x00000810]
; FXF jump table
parse_fxf_binary: jmp [0x00000820]
; task jump table
new_task: jmp [0x00000830]
yield_task: jmp [0x00000834]
end_current_task: jmp [0x00000838]
; memory jump table
allocate_memory: jmp [0x00000840]
free_memory: jmp [0x00000844]