Browse Source

tosunits: added some more xbios calls

git-svn-id: trunk@45468 -
Károly Balogh 5 years ago
parent
commit
60d4363f47
1 changed files with 7 additions and 0 deletions
  1. 7 0
      packages/tosunits/src/xbios.pas

+ 7 - 0
packages/tosunits/src/xbios.pas

@@ -19,10 +19,17 @@ interface
 { The API description of this file is based on the information available
 { The API description of this file is based on the information available
   online at: http://toshyp.atari.org }
   online at: http://toshyp.atari.org }
 
 
+function xbios_physbase: pointer; syscall 14 2;
+function xbios_logbase: pointer; syscall 14 3;
 function xbios_getrez: longint; syscall 14 4;
 function xbios_getrez: longint; syscall 14 4;
+procedure xbios_setscreen(laddr: pointer; paddr: pointer; rez: smallint); syscall 14 5;
+procedure xbios_setpalette(palette: pointer); syscall 14 6;
+function xbios_setcolor(colornum: smallint; color: smallint): smallint; syscall 14 7;
 
 
 function xbios_random: longint; syscall 14 17;
 function xbios_random: longint; syscall 14 17;
 
 
+procedure xbios_vsync; syscall 14 37;
+
 implementation
 implementation
 
 
 end.
 end.