1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 22:25:28 +00:00

Additional error code.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4418 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2009-11-01 22:01:23 +00:00
parent 5bfe33e4b7
commit 57c9a8f796

View File

@@ -1,4 +1,4 @@
; ;
; Ullrich von Bassewitz, 2004-06-15 ; Ullrich von Bassewitz, 2004-06-15
; ;
; const char* __fastcall__ tgi_geterrormsg (unsigned char code); ; const char* __fastcall__ tgi_geterrormsg (unsigned char code);
@@ -39,6 +39,7 @@ offs: .byte <(msg0-msgtab)
.byte <(msg5-msgtab) .byte <(msg5-msgtab)
.byte <(msg6-msgtab) .byte <(msg6-msgtab)
.byte <(msg7-msgtab) .byte <(msg7-msgtab)
.byte <(msg8-msgtab)
msgtab: msgtab:
msg0: .asciiz "No error" msg0: .asciiz "No error"
@@ -48,5 +49,6 @@ msg3: .asciiz "Invalid driver"
msg4: .asciiz "Mode not supported by driver" msg4: .asciiz "Mode not supported by driver"
msg5: .asciiz "Invalid function argument" msg5: .asciiz "Invalid function argument"
msg6: .asciiz "Function not supported" msg6: .asciiz "Function not supported"
msg7: .asciiz "Unknown error" msg7: .asciiz "Invalid font file"
msg8: .asciiz "Unknown error"