home *** CD-ROM | disk | FTP | other *** search
- ; ************
- ; * GETF.asm *
- ; *******************************************
- ; * Copyright TimeSlice, Inc. 1985, 86, 87. *
- ; *******************************************
- ;
- include ts.inc
- ;
- start_data
- end_data
- ;
- start_code
- ;
- ;**********
- ;* GETF()
- ;* Returns CPU flags registers.
- ;**********
- routine getf
- pushf ;push flags on stack
- pop ax ;pop flags in ax
- return getf
- ;
- end_code
-