-
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
488dc77
commit 9611b80
Showing
66 changed files
with
279 additions
and
3,499 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,36 +1,37 @@ | ||
AUTOREF 0 | ||
CLS | ||
SET ix,1 | ||
SET iy,1 | ||
SET c,0 | ||
RTILE | ||
TILE 0,15,0 | ||
:loop | ||
LOCATE ix,iy | ||
CSET 0,c | ||
PUT | ||
INC c | ||
INC ix | ||
GOTO.LE ix,16,loop | ||
INC iy | ||
SET ix,1 | ||
GOTO.LE iy,16,loop | ||
SET ix,1 | ||
SET iy,0 | ||
SET ch,0 | ||
:loop2 | ||
LOCATE ix,iy | ||
PRINTF "%X",ch | ||
INC ix | ||
INC ch | ||
GOTO.LE ix,16,loop2 | ||
SET ix,0 | ||
SET iy,1 | ||
SET ch,0 | ||
:loop3 | ||
LOCATE ix,iy | ||
PRINTF "%X",ch | ||
INC iy | ||
INC ch | ||
GOTO.LE iy,16,loop3 | ||
LOCATE 0,18 | ||
main: | ||
AUTOREF 0 | ||
CLS | ||
SET ix,1 | ||
SET iy,1 | ||
SET c,0 | ||
RTILE | ||
TILE 0,15,0 | ||
loop: | ||
LOCATE ix,iy | ||
CSET 0,c | ||
PUT | ||
INC c | ||
INC ix | ||
GOTO.LE ix,16,loop | ||
INC iy | ||
SET ix,1 | ||
GOTO.LE iy,16,loop | ||
SET ix,1 | ||
SET iy,0 | ||
SET ch,0 | ||
loop2: | ||
LOCATE ix,iy | ||
PRINTF "%X",ch | ||
INC ix | ||
INC ch | ||
GOTO.LE ix,16,loop2 | ||
SET ix,0 | ||
SET iy,1 | ||
SET ch,0 | ||
loop3: | ||
LOCATE ix,iy | ||
PRINTF "%X",ch | ||
INC iy | ||
INC ch | ||
GOTO.LE iy,16,loop3 | ||
LOCATE 0,18 |
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,36 +1,38 @@ | ||
AUTOREF 0 | ||
CLS | ||
SET ix,1 | ||
SET iy,1 | ||
SET c,0 | ||
RTILE | ||
TILE 0,0,0 | ||
:loop | ||
LOCATE ix,iy | ||
BSET 0,c | ||
PUT | ||
INC c | ||
INC ix | ||
GOTO.LE ix,16,loop | ||
INC iy | ||
SET ix,1 | ||
GOTO.LE iy,16,loop | ||
SET ix,1 | ||
SET iy,0 | ||
SET ch,0 | ||
:loop2 | ||
LOCATE ix,iy | ||
PRINTF "%X",ch | ||
INC ix | ||
INC ch | ||
GOTO.LE ix,16,loop2 | ||
SET ix,0 | ||
SET iy,1 | ||
SET ch,0 | ||
:loop3 | ||
LOCATE ix,iy | ||
PRINTF "%X",ch | ||
INC iy | ||
INC ch | ||
GOTO.LE iy,16,loop3 | ||
LOCATE 0,18 | ||
main: | ||
AUTOREF 0 | ||
CLS | ||
SET ix,1 | ||
SET iy,1 | ||
SET c,0 | ||
RTILE | ||
TILE 0,0,0 | ||
|
||
loop: | ||
LOCATE ix,iy | ||
BSET 0,c | ||
PUT | ||
INC c | ||
INC ix | ||
GOTO.LE ix,16,loop | ||
INC iy | ||
SET ix,1 | ||
GOTO.LE iy,16,loop | ||
SET ix,1 | ||
SET iy,0 | ||
SET ch,0 | ||
loop2: | ||
LOCATE ix,iy | ||
PRINTF "%X",ch | ||
INC ix | ||
INC ch | ||
GOTO.LE ix,16,loop2 | ||
SET ix,0 | ||
SET iy,1 | ||
SET ch,0 | ||
loop3: | ||
LOCATE ix,iy | ||
PRINTF "%X",ch | ||
INC iy | ||
INC ch | ||
GOTO.LE iy,16,loop3 | ||
LOCATE 0,18 |
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,4 @@ | ||
main: | ||
CURSOR 0 | ||
PRINT "Hello World 123!" | ||
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,5 @@ namespace PTML | |
void CALL_IFNKEY(); | ||
void RET(); | ||
void PAUSE(); | ||
void BREAK(); | ||
} |
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
Oops, something went wrong.