odd              3964 src/dps8/dps8_cpu.c int core_read2 (cpu_state_t * cpup, word24 addr, word36 *even, word36 *odd, const char * ctx)
odd              4041 src/dps8/dps8_cpu.c     *odd = v & DMASK;
odd              4044 src/dps8/dps8_cpu.c     *odd = M[addr] & DMASK;
odd              4048 src/dps8/dps8_cpu.c                 addr, * odd, ctx);
odd              4056 src/dps8/dps8_cpu.c int core_write2 (cpu_state_t * cpup, word24 addr, word36 even, word36 odd, const char * ctx) {
odd              4103 src/dps8/dps8_cpu.c              (long long unsigned int)addr, (long long unsigned int)odd, ctx);
odd              4110 src/dps8/dps8_cpu.c   STORE_REL_CORE_WORD(addr, odd);
odd              4113 src/dps8/dps8_cpu.c   M[addr] = odd & DMASK;
odd              4117 src/dps8/dps8_cpu.c   sim_debug (DBG_CORE, & cpu_dev, "core_write2 %08o %012"PRIo64" (%s)\r\n", addr, odd, ctx);
odd              2090 src/dps8/dps8_cpu.h static inline int core_read2 (word24 addr, word36 *even, word36 *odd,
odd              2096 src/dps8/dps8_cpu.h     *odd = M[addr] & DMASK;
odd              2102 src/dps8/dps8_cpu.h static inline int core_write2 (word24 addr, word36 even, word36 odd,
odd              2121 src/dps8/dps8_cpu.h     M[addr] = odd;
odd              2130 src/dps8/dps8_cpu.h int core_read2 (cpu_state_t * cpup, word24 addr, word36 *even, word36 *odd, const char * ctx);
odd              2131 src/dps8/dps8_cpu.h int core_write2 (cpu_state_t * cpup, word24 addr, word36 even, word36 odd, const char * ctx);
odd               829 src/dps8/dps8_iom.c void iom_core_read2 (UNUSED uint iom_unit_idx, word24 addr, word36 *even, word36 *odd, UNUSED const char * ctx)
odd               840 src/dps8/dps8_iom.c     * odd = v & DMASK;
odd               844 src/dps8/dps8_iom.c     * odd =  M[addr]    & DMASK;
odd               860 src/dps8/dps8_iom.c void iom_core_write2 (UNUSED uint iom_unit_idx, word24 addr, word36 even, word36 odd, UNUSED const char * ctx)
odd               870 src/dps8/dps8_iom.c     STORE_REL_CORE_WORD(addr, odd);
odd               874 src/dps8/dps8_iom.c     M[addr] =    odd;
odd               420 src/dps8/dps8_iom.h void iom_core_read2 (uint iom_unit_idx, word24 addr, word36 *even, word36 *odd, UNUSED const char * ctx);
odd               422 src/dps8/dps8_iom.h void iom_core_write2 (uint iom_unit_idx, word24 addr, word36 even, word36 odd, UNUSED const char * ctx);
odd              1072 src/dps8/dps8_utils.c word72 convert_to_word72(word36 even, word36 odd)
odd              1075 src/dps8/dps8_utils.c     return or_128 (lshift_128 (construct_128 (0, even), 36), construct_128 (0, odd));
odd              1077 src/dps8/dps8_utils.c     return ((word72)even << 36) | (word72)odd;
odd              1081 src/dps8/dps8_utils.c void convert_to_word36 (word72 src, word36 *even, word36 *odd)
odd              1085 src/dps8/dps8_utils.c     *odd  = src.l & DMASK;
odd              1088 src/dps8/dps8_utils.c     *odd  = (word36)src & DMASK;
odd                47 src/dps8/dps8_utils.h word72 convert_to_word72 (word36 even, word36 odd);
odd                48 src/dps8/dps8_utils.h void convert_to_word36 (word72 src, word36 *even, word36 *odd);
odd               300 src/dps8/segldr.c         word36 odd = extr36 (bytes, 1);
odd               303 src/dps8/segldr.c         M[addr ++] = odd;