4cade/src/ui.cheats.a

28 lines
511 B
Plaintext
Raw Normal View History

2019-09-16 16:57:53 +00:00
;license:MIT
;(c) 2018-9 by 4am
;
; cheat-related UI functions
;
; Public functions:
; - ToggleCheat
2019-09-16 16:57:53 +00:00
;
ToggleCheat
; in: none
; out: all registers clobbered
; X = 0, Z = 1 (guaranteed by pref_set)
lda gCheatsEnabled
eor #$80
sta gCheatsEnabled
beq +
lda #$B1
+HIDE_NEXT_2_BYTES
+ lda #$B0
sta @val
jsr pref_set
!word kCheat
!word @pref
rts
@pref !byte 1
@val !byte $FD