From c5d14ae11e1e21fe6b2ed02b55f6ab808c4bc1ef Mon Sep 17 00:00:00 2001 From: hugova Date: Mon, 28 Apr 2025 14:10:28 +0200 Subject: [PATCH] remove unessesary test. The buggertest may be used because line drawing is fast enough --- wip-hugo/routines/line/line_test_time.s | 46 ------------------------- 1 file changed, 46 deletions(-) delete mode 100644 wip-hugo/routines/line/line_test_time.s diff --git a/wip-hugo/routines/line/line_test_time.s b/wip-hugo/routines/line/line_test_time.s deleted file mode 100644 index 6dacd3a..0000000 --- a/wip-hugo/routines/line/line_test_time.s +++ /dev/null @@ -1,46 +0,0 @@ -;;; -*- Mode: asm; indent-tabs-mode: t; tab-width: 8 -*- -.scope line_test_time - .include "line.inc" - - ;;START TIME HERE - - ;;for testing stuff - Y_pos_ = $0D - X_pos_ = $0E - Y_end_ = $10 - X_end_ = $11 - LDA #$00 - STA X_pos_ - LDA #$30 - STA Y_pos_ - LDA #$ff - STA X_end - LDA #$30 - STA Y_end - - -@loop:;; mem f1 - LDA Y_pos_ - STA Y_pos - LDA X_pos_ - STA X_pos - - jsr line - INC Y_end - LDA Y_end - CMP #$50 - BEQ end__ - jmp @loop -end__: - ;;Lets cleer bitmap - B_start = $FCFD ;16-bit value (uses FD) - B_end = $FEFF ;16-bit value (uses FF) - VIC_bank = $4000 - VIC_bank_end = VIC_bank + $3FFF - ;;Paint the bitmap black. More bitmap: https://www.c64-wiki.com/wiki/53272, https://www.c64-wiki.com/wiki/Screen_RAM#Moving_of_screen_RAM - Mov_16 B_start, B_start + 1, #VIC_bank - Mov_16 B_end, B_end + 1, #<$5f3f, #>$5f3f - LDA #$00 - jsr memset - jmp exit -.endscope