Added SetNewMode() to geoslib - #814

This commit is contained in:
Scott Hutter
2018-12-18 11:09:06 -06:00
committed by Oliver Schmidt
parent 1b46dfe820
commit 2f6f468aad
2 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
;
; Scott Hutter
;
; 18.12.18
; void SetNewMode(void);
.export _SetNewMode
.include "jumptab.inc"
.include "geossym.inc"
_SetNewMode:
lda graphMode
eor #$80
sta graphMode
jsr SetNewMode
rts