Home
last modified time | relevance | path

Searched refs:UNIT_FP (Results 1 – 5 of 5) sorted by relevance

/dports/emulators/simh-hpdoc/simh-hpdoc-3.11.0/SCP/HP2100/
H A Dhp2100_cpu.c1039 #define UNIT_FP TO_UNIT_OPTION (Option_FP) macro
1184 UNIT_DMA | UNIT_FP | UNIT_IOP | UNIT_FFP,
1188 { UNIT_MP | UNIT_DMA | UNIT_EAU | UNIT_FP | UNIT_DMS, /* Option_1000_M */
1194 { UNIT_MP | UNIT_DMA | UNIT_EAU | UNIT_FP | UNIT_DMS, /* Option_1000_E */
1200 { UNIT_MP | UNIT_DMA | UNIT_EAU | UNIT_FP | /* Option_1000_F */
1391 …{ UNIT_FP, UNIT_FP, "FP", "FP", &set_option, NULL, NULL …
1392 …{ UNIT_FP, 0, "no FP", NULL, NULL, NULL, NULL …
3883 if ((option == UNIT_FP) || (option == UNIT_FFP)) /* then the IOP option */ in set_option()
3886 uptr->flags &= ~(UNIT_FP | UNIT_FFP); /* mutually exclusive */ in set_option()
3889 uptr->flags |= UNIT_FP; /* requires FP as well */ in set_option()
[all …]
/dports/emulators/simh-hp2100/simh-hp2100-3.11.0.31/SCP/HP2100/
H A Dhp2100_cpu.c1050 #define UNIT_FP TO_UNIT_OPTION (Option_FP) macro
1198 UNIT_DMA | UNIT_FP | UNIT_IOP | UNIT_FFP,
1203 UNIT_FP | UNIT_DMS,
1210 UNIT_FP | UNIT_DMS,
1217 UNIT_FP | UNIT_FFP | UNIT_DBI | UNIT_DMS,
1429 …{ UNIT_FP, UNIT_FP, "FP", "FP", &set_option, NULL, NULL…
1430 …{ UNIT_FP, 0, "no FP", NULL, NULL, NULL, NULL…
4195 if ((option == UNIT_FP) || (option == UNIT_FFP)) /* then the IOP option */ in set_option()
4198 uptr->flags &= ~(UNIT_FP | UNIT_FFP); /* mutually exclusive */ in set_option()
4201 uptr->flags |= UNIT_FP; /* requires FP as well */ in set_option()
[all …]
/dports/emulators/simh/simh-3.9.0_5/HP2100/
H A Dhp2100_cpu.h135 #define UNIT_FP (1 << UNIT_V_FP) macro
148 #define UNIT_OPTS (UNIT_EAU | UNIT_FP | UNIT_IOP | \
H A Dhp2100_cpu.c651 UNIT_DMA | UNIT_FP | UNIT_IOP | UNIT_FFP,
656 { UNIT_MP | UNIT_DMA | UNIT_EAU | UNIT_FP | UNIT_DMS, /* UNIT_1000_M */
660 { UNIT_MP | UNIT_DMA | UNIT_EAU | UNIT_FP | UNIT_DMS, /* UNIT_1000_E */
664 { UNIT_MP | UNIT_DMA | UNIT_EAU | UNIT_FP | /* UNIT_1000_F */
757 { UNIT_FP, UNIT_FP, "FP", "FP", &cpu_set_opt, NULL, NULL },
758 { UNIT_FP, 0, "no FP", NULL, NULL, NULL, NULL },
759 { MTAB_XTD | MTAB_VDV, UNIT_FP, NULL, "NOFP", &cpu_clr_opt, NULL, NULL },
3841 if ((option == UNIT_FP) || (option == UNIT_FFP)) /* 2100 IOP and FP/FFP options */ in cpu_set_opt()
3844 uptr->flags = uptr->flags & ~(UNIT_FP | UNIT_FFP); in cpu_set_opt()
3847 uptr->flags = uptr->flags | UNIT_FP; in cpu_set_opt()
[all …]
H A Dhp2100_cpu1.c456 if (cpu_unit.flags & UNIT_FP) /* FP option installed? */ in cpu_uig_0()