diff options
author | B. Watson <urchlay@slackware.uk> | 2022-11-08 01:39:41 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2022-11-08 01:39:41 -0500 |
commit | b694d22114fc57d5c8df67853ec1657d7916fbce (patch) | |
tree | 46b4fdfad37a33969a3101a998c64a7517a0cd85 | |
parent | af122e258fe45d5081213dc1ac55f782c3dd8b9f (diff) | |
download | dla-asm-b694d22114fc57d5c8df67853ec1657d7916fbce.tar.gz |
Remove Start key peeking (no longer works).
-rw-r--r-- | dla.s | 28 |
1 files changed, 0 insertions, 28 deletions
@@ -82,12 +82,6 @@ init: lda #>DEFAULTPART sta maxparticles+1 - ; init our immediate vblank handler - lda #6 - ldy #<consol_isr - ldx #>consol_isr - jsr SETVBV - ; "New" option jumps here, restore GR.0 screen getargs: jsr restore_gr0 @@ -577,28 +571,6 @@ close1: sta ICCOM,x jmp CIOV -;;; Interrupt handler: consol_isr -;;; Called via immediate IRC. Enables/disables ANTIC DMA based -;;; on the status of the Start key, but only while CRITIC is set. -consol_isr: - ;pha - ;txa - ;pha - lda CRITIC - beq ci_done - ldx #0 - lda CONSOL - cmp #6 - bne ci_nopress - ldx #DMA_ON -ci_nopress: - stx DMACTL -ci_done: - ;pla - ;tax - ;pla - jmp SYSVBV - ;;;;; end of executable code, data tables from here on out. ; prompts. |