From b694d22114fc57d5c8df67853ec1657d7916fbce Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 8 Nov 2022 01:39:41 -0500 Subject: Remove Start key peeking (no longer works). --- dla.s | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/dla.s b/dla.s index 9ebf2c1..24121d3 100644 --- a/dla.s +++ b/dla.s @@ -82,12 +82,6 @@ init: lda #>DEFAULTPART sta maxparticles+1 - ; init our immediate vblank handler - lda #6 - ldy #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. -- cgit v1.2.3