From f1bad6853dae646b72ec12dd9af0aa08e093dada Mon Sep 17 00:00:00 2001 From: Anachronaut <75824887+RealBusinessAccount@users.noreply.github.com> Date: Fri, 1 Nov 2024 12:14:06 -0400 Subject: [PATCH] Delete Programs/printDecimalTest.asm --- Programs/printDecimalTest.asm | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Programs/printDecimalTest.asm diff --git a/Programs/printDecimalTest.asm b/Programs/printDecimalTest.asm deleted file mode 100644 index 6558479..0000000 --- a/Programs/printDecimalTest.asm +++ /dev/null @@ -1,31 +0,0 @@ -; Tests for the printDecimal subroutine. - -#Include print.asm - -#Program - -start: - INIB 0xFF ; Load 255 into B. - loop: - SETD MyDecimal ; Set D to our decimal. - SUB - CCF ; Clear the Carry Flag. - CALL printDecimal ; Print the value. - LDA ; Load the value into A. - INCA ; Increment it. - STA ; Store it again. - SETD Space - CALL printString ; Print a space between the the numbers. - BRQ end ; If Q is zero, we're done. - BRI loop ; Branch back to the start of the loop. - end: - CALL lineFeed - HALT - -#Data - -MyDecimal: - 0x00 - -Space: - " "