home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- *
- * machine.c
- *
- * copyright (c) 1988,89,90 J. Alan Eldridge
- *
- * get the machine id word from the ROM
- *
- *********************************************************************/
-
- #include "curses.h"
-
- void
- get_machine_id(MACHINE_ID *id_ptr)
- {
- unsigned long id_long = 0xffff000e;
-
- *id_ptr = *(MACHINE_ID far *)id_long;
- }
-
-