Add Panic to Okameron defs

This commit is contained in:
Ry 2023-11-24 15:34:16 -08:00
parent 26a6a3288c
commit f247307575
2 changed files with 8 additions and 0 deletions

View File

@ -21,6 +21,8 @@ MODULE Fox32ROM;
EVENT_TYPE_MENU_ACK: INT; EVENT_TYPE_MENU_ACK: INT;
EVENT_TYPE_EMPTY: INT; EVENT_TYPE_EMPTY: INT;
EXTERN PROCEDURE Panic: INT;
EXTERN PROCEDURE NewEvent: INT; EXTERN PROCEDURE NewEvent: INT;
EXTERN PROCEDURE GetNextEvent: INT; EXTERN PROCEDURE GetNextEvent: INT;
EXTERN PROCEDURE ScancodeToAscii: INT; EXTERN PROCEDURE ScancodeToAscii: INT;

View File

@ -1,5 +1,11 @@
; fox32rom routine definitions for Okameron ; fox32rom routine definitions for Okameron
; PROCEDURE Panic(
; str: POINTER TO CHAR;
; );
Panic:
jmp panic
; PROCEDURE NewEvent( ; PROCEDURE NewEvent(
; eventType, ; eventType,
; eventArg0, ; eventArg0,