diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-10 00:27:10 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-10 00:27:46 +0100 |
| commit | 68e63fa4ff68d7124b178a9378a9b293f5ddaed4 (patch) | |
| tree | 9740a54b83b1fcd9e4baa803d6504de7ad2b33e3 /src/player.s | |
| parent | b891997ab597056c1a3ee26b7de0340dcb5e2e2f (diff) | |
| download | jetpac.nes-68e63fa4ff68d7124b178a9378a9b293f5ddaed4.tar.gz jetpac.nes-68e63fa4ff68d7124b178a9378a9b293f5ddaed4.zip | |
Remove outdated asan:ignore comments
This was just fixed on nasm, so it's no longer needed.
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'src/player.s')
| -rw-r--r-- | src/player.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player.s b/src/player.s index 60005af..08f7872 100644 --- a/src/player.s +++ b/src/player.s @@ -7,9 +7,9 @@ .macro FIXED_POINT_POSITION_TO_SCREEN POS_ADDR ;; We save the high byte into a temporary value, and we load the low byte ;; into the accumulator. - lda POS_ADDR + 1 ; asan:ignore + lda POS_ADDR + 1 sta Globals::zp_tmp0 - lda POS_ADDR ; asan:ignore + lda POS_ADDR ;; And now it's a matter of rotating the high byte into the low one to ;; match a full byte. |
