diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-24 00:34:26 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-24 00:34:26 +0100 |
| commit | b779e7dc3d44f7b9d90aeeee91ed36cf57d65e95 (patch) | |
| tree | 1f94f26d5781c93997fd4a052e1b6177ce3874a3 /src/driver.s | |
| parent | 0c9b0ad7938e2ba7e994574b4947e25c82440b8c (diff) | |
| download | jetpac.nes-b779e7dc3d44f7b9d90aeeee91ed36cf57d65e95.tar.gz jetpac.nes-b779e7dc3d44f7b9d90aeeee91ed36cf57d65e95.zip | |
Use the 'nmi_' prefix for NMI-only functions
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'src/driver.s')
| -rw-r--r-- | src/driver.s | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/driver.s b/src/driver.s index 3372f9a..8e26fbe 100644 --- a/src/driver.s +++ b/src/driver.s @@ -908,9 +908,7 @@ .endproc ;; Toggle the "Paused" message from the (not quite) HUD. - ;; - ;; NOTE: only call this function from NMI code. - .proc hud_toggle_pause + .proc nmi_hud_toggle_pause ;; Unset the 'P' flag. lda Driver::zp_flags and #%10111111 @@ -964,9 +962,7 @@ ;; This function expects the 'Globals::zp_nmi_reserved' to be set with the ;; addition to be performed on each base character in order to set the ;; proper animation phase (i.e. either "#$00" or "#$70"). - ;; - ;; NOTE: only call this function from NMI code. - .proc blink_player_selection + .proc nmi_blink_player_selection bit PPU::m_status ;; Which player are we talking about? |
