-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c95f587
commit de060cd
Showing
9 changed files
with
63 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
LOOP=76:53:0:C:\Users\letsp\Desktop\Pix80-Code\MISC\10PRINT.ASM | ||
PRINTBACKSLASH=93:63:0:C:\Users\letsp\Desktop\Pix80-Code\MISC\10PRINT.ASM | ||
EXIT=97:67:0:C:\Users\letsp\Desktop\Pix80-Code\MISC\10PRINT.ASM | ||
RND=101:71:0:C:\Users\letsp\Desktop\Pix80-Code\MISC\10PRINT.ASM | ||
LOOP=92:61:0:C:\Users\tvirtman.SVA\Downloads\Pix80-Code\MISC\10PRINT.ASM | ||
PRINTBACKSLASH=109:71:0:C:\Users\tvirtman.SVA\Downloads\Pix80-Code\MISC\10PRINT.ASM | ||
EXIT=113:75:0:C:\Users\tvirtman.SVA\Downloads\Pix80-Code\MISC\10PRINT.ASM | ||
RND=117:79:0:C:\Users\tvirtman.SVA\Downloads\Pix80-Code\MISC\10PRINT.ASM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
; Counter | ||
; LCD init | ||
LD A,0b00111000 ; set screen mode | ||
OUT (1),A | ||
LD A,0b00111000 ; set screen mode | ||
OUT (1),A | ||
LD A,0b00001100 ; turn on display | ||
OUT (1),A | ||
LD A,0b00000001 ; clear display | ||
OUT (1),A | ||
LD A,0b00000110 ; set entry mode | ||
OUT (1),A | ||
LD A,0b10000000 ; set DRAM Address | ||
OUT (1),A | ||
|
||
loop: | ||
LD A,0b00000010 ; go home | ||
OUT (1),A | ||
LD A,R | ||
OUT (0),A | ||
JR loop | ||
HALT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
; Counter | ||
; LCD init | ||
LD A,0b00111000 ; set screen mode | ||
OUT (1),A | ||
LD A,0b00111000 ; set screen mode | ||
OUT (1),A | ||
LD A,0b00001100 ; turn on display | ||
OUT (1),A | ||
LD A,0b00000001 ; clear display | ||
OUT (1),A | ||
LD A,0b00000110 ; set entry mode | ||
OUT (1),A | ||
LD A,0b10000000 ; set DRAM Address | ||
OUT (1),A | ||
|
||
LD A,R | ||
ADD A,48 | ||
OUT (0),A | ||
HALT |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2 O 1002 0 0 ? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
LOOP=24:16:0:C:\Users\tvirtman.SVA\Downloads\Pix80-Code\MISC\RCOUNT.ASM |