4cade/src/ui.cheats.a
2019-09-24 15:32:24 -04:00

27 lines
492 B
Plaintext

;license:MIT
;(c) 2018-9 by 4am
;
; cheat-related UI functions
;
; Public functions:
; - ToggleCheat
;
ToggleCheat
; in: none
; out: X = 0, Z = 1 (guaranteed by pref_set)
; all other registers and flags clobbered
ldx #$B0
lda gCheatsEnabled
eor #$80
sta gCheatsEnabled
beq +
inx
+ stx @val
jsr pref_set
!word kCheat
!word @pref
rts
@pref !byte 1
@val !byte $FD