1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-06 16:29:30 +00:00
cc65/libsrc/geos-cbm/graph/setnewmode.s
2022-04-17 16:06:22 +02:00

19 lines
275 B
ArmAsm

;
; Scott Hutter
;
; 18.12.18
; void SetNewMode(void);
.export _SetNewMode
.include "jumptab.inc"
.include "geossym.inc"
_SetNewMode:
lda graphMode
eor #$80
sta graphMode
jmp SetNewMode