Skip to content

Commit

Permalink
Merge pull request #89 from BensonRSI/sorbus_port_rebase
Browse files Browse the repository at this point in the history
Sorbus port rebase
  • Loading branch information
davidgiven authored Dec 20, 2023
2 parents 60de780 + 8708ef3 commit 0c006b4
Show file tree
Hide file tree
Showing 10 changed files with 1,032 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def asm(self, name, src: Target = None, deps: Targets = []):
"dump",
"ls",
"scrntest",
"xrecv",
]:
asm(name=prog, src=("./%s.asm" % prog), deps=["./cpm65.inc"])

Expand Down
6 changes: 6 additions & 0 deletions apps/drivers.inc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

DRVID_TTY = 1
DRVID_SCREEN = 2
DRVID_AUX = 4

DRVSTRUCT_ID = 0
DRVSTRUCT_STRAT = 2
Expand All @@ -13,6 +14,11 @@ TTY_CONST = 0
TTY_CONIN = 1
TTY_CONOUT = 2

AUX_IN = 0
AUX_OUT = 1
AUX_OPEN = 2
AUX_CLOSE = 3

SCREEN_GETSIZE = 1
SCREEN_CLEAR = 2
SCREEN_SETCURSOR = 3
Expand Down
Loading

0 comments on commit 0c006b4

Please sign in to comment.