PXL working

This commit is contained in:
Luxferre
2022-07-29 08:24:37 +03:00
parent 5ddd2ed571
commit 5ef288fc90
3 changed files with 24 additions and 19 deletions
+22
View File
@@ -0,0 +1,22 @@
( ESOP stdlib, macro part )
|00 @Control [ &framevec $2 &io $2 &random $1 &status $1 &sound $1 &syscall $1 ]
( control block macros )
%SETSCRVEC { .Control/framevec DEO2 }
%INKEY { .Control/io DEI2 }
%PXL { .Control/io DEO2 }
%RND { .Control/random DEI }
%STACKTRACE { #ff .Control/random DEO }
%DEVSTAT { .Control/status DEI }
%SND { .Control/sound DEO }
%SYS { .Control/syscall DEO }
( some syscall macros )
%HLT { #1f SYS }
%DBG { #20 SYS SYS }
( byte to short )
%BTS { #00 SWP }