home *** CD-ROM | disk | FTP | other *** search
- ;************************************************************************
- ;* BIOS Character-I/O Subroutinen *
- ;************************************************************************
-
- .z80 ;
- entry _biosin, _biosout, _biossts
- saveohl macro ;
- push bc ;
- push de ;
- push ix ;
- push iy ;
- endm ;
-
- restore macro ;
- pop iy ;
- pop ix ;
- pop de ;
- pop bc ;
- pop hl ;
- endm ;
-
- _biosin: push hl ;
- ld l,9 ; CONIN
- jr bioscall ;
-
- _biossts: push hl ;
- ld l,6 ; CONST
- jr bioscall ;
-
- _biosout: push hl ;
- ld l,12 ; CONOUT
-
- bioscall: saveohl ;
- ld c,a ; falls CONOUT
- call _bioscall## ;
- or a ; falls CONST
- restore ;
- ret ;
-
- end ;