fork of PCE focusing on macplus, supporting DaynaPort SCSI network emulation
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ibmpc/pcex: Remove old hook symbolic constants

+4 -45
+4 -45
src/arch/ibmpc/pce.inc
··· 31 31 %define PCE_BRK_ABORT 2 32 32 33 33 34 - %define PCEH_STOP 0x0000 35 - %define PCEH_ABORT 0x0100 36 - 37 - %define PCEH_SET_BOOT 0x0001 38 - %define PCEH_SET_INT28 0x0401 39 - %define PCEH_SET_CPU 0x0501 40 - %define PCEH_SET_AMSK 0x0601 41 - 42 - %define PCEH_GET_BOOT 0x0002 43 - %define PCEH_GET_COM 0x0102 44 - %define PCEH_GET_LPT 0x0202 45 - %define PCEH_GET_INT28 0x0402 46 - %define PCEH_GET_CPU 0x0502 47 - %define PCEH_GET_AMSK 0x0602 48 - %define PCEH_GET_VERS 0x0702 49 - %define PCEH_GET_FDCNT 0x0802 50 - %define PCEH_GET_HDCNT 0x0902 51 - 52 - %define PCEH_XMS 0x0003 53 - %define PCEH_XMS_INFO 0x0103 54 - 55 - %define PCEH_EMS 0x0004 56 - %define PCEH_EMS_INFO 0x0104 57 - 58 - %define PCEH_MSG 0x0005 59 - 60 - %define PCEH_CHECK_INT 0x0006 61 - 62 - %define PCEH_INT 0x00cd 63 - 64 - 65 - %macro pceh 1 66 - db 0x66, 0x66, (%1 & 0xff), (%1 >> 8) & 0xff 67 - %endmacro 68 - 69 - %macro pceh 2 70 - db 0x66, 0x66, %1, %2 71 - %endmacro 72 - 73 - 74 - %macro set_pos 1 75 - times %1 - ($ - $$) db 0 76 - %endmacro 77 - 78 - 79 34 %define PCE_HOOK_CHECK 0x0000 80 35 %define PCE_HOOK_GET_VERSION 0x0001 81 36 %define PCE_HOOK_GET_VERSION_STR 0x0002 ··· 112 67 mov ax, PCE_HOOK_INT | (%1) 113 68 db 0xd5, 0x00 114 69 jmp short %2 70 + %endmacro 71 + 72 + %macro set_pos 1 73 + times %1 - ($ - $$) db 0 115 74 %endmacro 116 75 117 76