2002-06-21 12:46:52 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 21.06.2002
|
|
|
|
;
|
|
|
|
; unsigned char __fastcall__ tgi_geterror (void);
|
2002-06-21 16:25:56 +00:00
|
|
|
; /* Return the error code for the last operation. This will also clear the
|
|
|
|
; * error.
|
2002-06-21 13:28:51 +00:00
|
|
|
; */
|
2002-06-21 12:46:52 +00:00
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
|
2002-06-21 16:25:56 +00:00
|
|
|
.export _tgi_geterror
|
2002-06-21 12:46:52 +00:00
|
|
|
|
|
|
|
_tgi_geterror:
|
2002-06-21 13:28:51 +00:00
|
|
|
ldx #0
|
2002-06-21 12:46:52 +00:00
|
|
|
lda _tgi_error
|
2002-06-21 13:28:51 +00:00
|
|
|
stx _tgi_error
|
2002-06-21 12:46:52 +00:00
|
|
|
rts
|
|
|
|
|