Fix register in comments for external interrupt tests

This commit is contained in:
Pokechu22 2023-02-23 18:28:56 -08:00
commit 53b0fe1e67
5 changed files with 5 additions and 5 deletions

View file

@ -58,7 +58,7 @@ external_irq:
CALL send_back
RTI
; Expected result ($AX0.H (send_back num), $AR0, and $SR):
; Expected result ($AX0.H (send_back num), $AX1.H, and $SR):
; 1, 1, 2024 (start)
; 3, 2, 2025 (in interrupt handler - note that the interrupt happens after one LRI instruction)
; 2, 6, 3825 (the remaining LRI instructions execute)

View file

@ -58,7 +58,7 @@ external_irq:
CALL send_back
RTI
; Expected result ($AX0.H (send_back num), $AR0, and $SR):
; Expected result ($AX0.H (send_back num), $AX1.H, and $SR):
; 1, 1, 2024 (start)
; 3, 2, 2025 (in interrupt handler - note that the interrupt happens after only one LRI instruction)
; 2, 6, 3825 (the remaining LRIS instructions execute)

View file

@ -58,7 +58,7 @@ external_irq:
CALL send_back
RTI
; Expected result ($AX0.H (send_back num), $AR0, and $SR):
; Expected result ($AX0.H (send_back num), $AX1.H, and $SR):
; 1, 1, 2024 (start)
; 3, 3, 2025 (in interrupt handler - note that the interrupt happens after two LRIS instructions)
; 2, 6, 3825 (the remaining LRIS instructions execute)

View file

@ -58,7 +58,7 @@ external_irq:
CALL send_back
RTI
; Expected result ($AX0.H (send_back num), $AR0, and $SR):
; Expected result ($AX0.H (send_back num), $AX1.H, and $SR):
; 1, 1, 2024 (start)
; 3, 3, 2025 (in interrupt handler - note that the interrupt happens after both the LRIS and LRI instructions)
; 2, 6, 3825 (the remaining LRIS instructions execute)

View file

@ -60,7 +60,7 @@ external_irq:
CALL send_back
RTI
; Expected result ($AX0.H (send_back num), $AR0, and $SR):
; Expected result ($AX0.H (send_back num), $AX1.H, and $SR):
; 1, 1, 2024 (start)
; 3, 1, 2020 (in interrupt handler)
; 2, 6, 3825 (end)