diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-03-10 22:52:15 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-03-10 22:52:15 +0100 |
| commit | 1a74e6a1856673072a61abd0861759901bc2d939 (patch) | |
| tree | bb1b54a7c27280d7d9e83c031233dd8402f1e721 /space/src/vectors/irq.s | |
| parent | ff22231f8a2f3714df701fd7c12b07915adc15e9 (diff) | |
| download | code.nes-1a74e6a1856673072a61abd0861759901bc2d939.tar.gz code.nes-1a74e6a1856673072a61abd0861759901bc2d939.zip | |
Bring code style to better standards
Be more careful on everything and try to follow along style.nes from my
repository. This might change in the future, but it's in a much better
state now.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'space/src/vectors/irq.s')
| -rw-r--r-- | space/src/vectors/irq.s | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/space/src/vectors/irq.s b/space/src/vectors/irq.s index 2be3a94..ed8cf47 100644 --- a/space/src/vectors/irq.s +++ b/space/src/vectors/irq.s @@ -1,6 +1,5 @@ -.segment "CODE" - ;; Interrupt Requests handler. -irq: +.proc irq ;; Nothing to do for us here :) rti +.endproc |
