You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
301 B

sub BiosSetup() is
@asm "jp __BiosSetup";
end sub;
sub ConOut(ch: uint8) is
@asm "jp __ConOut";
end sub;
sub ConIn(): (ret: uint8) is
@asm "jp __ConIn";
end sub;
sub ConSts(): (ret: uint8) is
@asm "jp __ConSts";
end sub;
sub putstr(str: [uint8]) is
@asm "jp __putstr";
end sub;