2022-04-28 20:55:47 +00:00
|
|
|
//
|
|
|
|
// PerformImplementation.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 28/04/2022.
|
|
|
|
// Copyright © 2022 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef InstructionSets_M68k_PerformImplementation_h
|
|
|
|
#define InstructionSets_M68k_PerformImplementation_h
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
namespace InstructionSet {
|
|
|
|
namespace M68k {
|
|
|
|
|
|
|
|
#define u_extend16(x) uint32_t(int16_t(x))
|
|
|
|
#define u_extend8(x) uint32_t(int8_t(x))
|
|
|
|
#define s_extend16(x) int32_t(int16_t(x))
|
|
|
|
#define s_extend8(x) int32_t(int8_t(x))
|
|
|
|
|
|
|
|
#define convert_to_bit_count_16(x) \
|
|
|
|
x = ((x & 0xaaaa) >> 1) + (x & 0x5555); \
|
|
|
|
x = ((x & 0xcccc) >> 2) + (x & 0x3333); \
|
|
|
|
x = ((x & 0xf0f0) >> 4) + (x & 0x0f0f); \
|
|
|
|
x = ((x & 0xff00) >> 8) + (x & 0x00ff);
|
|
|
|
|
|
|
|
template <
|
|
|
|
Model model,
|
2022-05-01 21:39:56 +00:00
|
|
|
typename FlowController,
|
|
|
|
Operation operation = Operation::Undefined
|
2022-04-30 18:08:51 +00:00
|
|
|
> void perform(Preinstruction instruction, CPU::SlicedInt32 &src, CPU::SlicedInt32 &dest, Status &status, FlowController &flow_controller) {
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
#define sub_overflow() ((result ^ destination) & (destination ^ source))
|
|
|
|
#define add_overflow() ((result ^ destination) & ~(destination ^ source))
|
2022-05-01 21:39:56 +00:00
|
|
|
switch((operation != Operation::Undefined) ? operation : instruction.operation) {
|
2022-04-28 20:55:47 +00:00
|
|
|
/*
|
2022-04-29 11:57:02 +00:00
|
|
|
ABCD adds the lowest bytes from the source and destination using BCD arithmetic,
|
2022-04-28 20:55:47 +00:00
|
|
|
obeying the extend flag.
|
|
|
|
*/
|
|
|
|
case Operation::ABCD: {
|
|
|
|
// Pull out the two halves, for simplicity.
|
2022-04-29 08:51:02 +00:00
|
|
|
const uint8_t source = src.b;
|
|
|
|
const uint8_t destination = dest.b;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
// Perform the BCD add by evaluating the two nibbles separately.
|
|
|
|
const int unadjusted_result = destination + source + (status.extend_flag_ ? 1 : 0);
|
|
|
|
int result = (destination & 0xf) + (source & 0xf) + (status.extend_flag_ ? 1 : 0);
|
|
|
|
if(result > 0x09) result += 0x06;
|
|
|
|
result += (destination & 0xf0) + (source & 0xf0);
|
|
|
|
if(result > 0x99) result += 0x60;
|
|
|
|
|
|
|
|
// Set all flags essentially as if this were normal addition.
|
|
|
|
status.zero_result_ |= result & 0xff;
|
|
|
|
status.extend_flag_ = status.carry_flag_ = uint_fast32_t(result & ~0xff);
|
|
|
|
status.negative_flag_ = result & 0x80;
|
|
|
|
status.overflow_flag_ = ~unadjusted_result & result & 0x80;
|
|
|
|
|
|
|
|
// Store the result.
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.b = uint8_t(result);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
#define addop(a, b, x) a + b + (x ? 1 : 0)
|
|
|
|
#define subop(a, b, x) a - b - (x ? 1 : 0)
|
|
|
|
#define z_set(a, b) a = b
|
|
|
|
#define z_or(a, b) a |= b
|
|
|
|
|
2022-04-29 08:51:02 +00:00
|
|
|
#define addsubb(a, b, op, overflow, x, zero_op) \
|
2022-04-28 20:55:47 +00:00
|
|
|
const int source = a; \
|
|
|
|
const int destination = b; \
|
|
|
|
const auto result = op(destination, source, x); \
|
|
|
|
\
|
2022-04-29 08:51:02 +00:00
|
|
|
b = uint8_t(result); \
|
|
|
|
zero_op(status.zero_result_, b); \
|
2022-04-28 20:55:47 +00:00
|
|
|
status.extend_flag_ = status.carry_flag_ = uint_fast32_t(result & ~0xff); \
|
|
|
|
status.negative_flag_ = result & 0x80; \
|
|
|
|
status.overflow_flag_ = overflow() & 0x80;
|
|
|
|
|
2022-04-29 08:51:02 +00:00
|
|
|
#define addsubw(a, b, op, overflow, x, zero_op) \
|
2022-04-28 20:55:47 +00:00
|
|
|
const int source = a; \
|
|
|
|
const int destination = b; \
|
|
|
|
const auto result = op(destination, source, x); \
|
|
|
|
\
|
2022-04-29 08:51:02 +00:00
|
|
|
b = uint16_t(result); \
|
|
|
|
zero_op(status.zero_result_, b); \
|
2022-04-28 20:55:47 +00:00
|
|
|
status.extend_flag_ = status.carry_flag_ = uint_fast32_t(result & ~0xffff); \
|
|
|
|
status.negative_flag_ = result & 0x8000; \
|
|
|
|
status.overflow_flag_ = overflow() & 0x8000;
|
|
|
|
|
2022-04-29 08:51:02 +00:00
|
|
|
#define addsubl(a, b, op, overflow, x, zero_op) \
|
2022-04-28 20:55:47 +00:00
|
|
|
const uint64_t source = a; \
|
|
|
|
const uint64_t destination = b; \
|
|
|
|
const auto result = op(destination, source, x); \
|
|
|
|
\
|
2022-04-29 08:51:02 +00:00
|
|
|
b = uint32_t(result); \
|
|
|
|
zero_op(status.zero_result_, b); \
|
2022-04-28 20:55:47 +00:00
|
|
|
status.extend_flag_ = status.carry_flag_ = uint_fast32_t(result >> 32); \
|
|
|
|
status.negative_flag_ = result & 0x80000000; \
|
|
|
|
status.overflow_flag_ = overflow() & 0x80000000;
|
|
|
|
|
2022-04-29 08:51:02 +00:00
|
|
|
#define addb(a, b, x, z) addsubb(a, b, addop, add_overflow, x, z)
|
|
|
|
#define subb(a, b, x, z) addsubb(a, b, subop, sub_overflow, x, z)
|
|
|
|
#define addw(a, b, x, z) addsubw(a, b, addop, add_overflow, x, z)
|
|
|
|
#define subw(a, b, x, z) addsubw(a, b, subop, sub_overflow, x, z)
|
|
|
|
#define addl(a, b, x, z) addsubl(a, b, addop, add_overflow, x, z)
|
|
|
|
#define subl(a, b, x, z) addsubl(a, b, subop, sub_overflow, x, z)
|
2022-04-28 20:55:47 +00:00
|
|
|
|
2022-04-29 08:51:02 +00:00
|
|
|
#define no_extend(op, a, b) op(a, b, 0, z_set)
|
|
|
|
#define extend(op, a, b) op(a, b, status.extend_flag_, z_or)
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
// ADD and ADDA add two quantities, the latter sign extending and without setting any flags;
|
|
|
|
// ADDQ and SUBQ act as ADD and SUB, but taking the second argument from the instruction code.
|
|
|
|
case Operation::ADDb: {
|
|
|
|
no_extend( addb,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.b,
|
|
|
|
dest.b);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::ADDXb: {
|
|
|
|
extend( addb,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.b,
|
|
|
|
dest.b);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::ADDw: {
|
|
|
|
no_extend( addw,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.w,
|
|
|
|
dest.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::ADDXw: {
|
|
|
|
extend( addw,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.w,
|
|
|
|
dest.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::ADDl: {
|
|
|
|
no_extend( addl,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.l,
|
|
|
|
dest.l);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::ADDXl: {
|
|
|
|
extend( addl,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.l,
|
|
|
|
dest.l);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::SUBb: {
|
|
|
|
no_extend( subb,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.b,
|
|
|
|
dest.b);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::SUBXb: {
|
|
|
|
extend( subb,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.b,
|
|
|
|
dest.b);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::SUBw: {
|
|
|
|
no_extend( subw,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.w,
|
|
|
|
dest.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::SUBXw: {
|
|
|
|
extend( subw,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.w,
|
|
|
|
dest.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::SUBl: {
|
|
|
|
no_extend( subl,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.l,
|
|
|
|
dest.l);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::SUBXl: {
|
|
|
|
extend( subl,
|
2022-04-29 08:51:02 +00:00
|
|
|
src.l,
|
|
|
|
dest.l);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
#undef addl
|
|
|
|
#undef addw
|
|
|
|
#undef addb
|
|
|
|
#undef subl
|
|
|
|
#undef subw
|
|
|
|
#undef subb
|
|
|
|
#undef addsubl
|
|
|
|
#undef addsubw
|
|
|
|
#undef addsubb
|
|
|
|
#undef z_set
|
|
|
|
#undef z_or
|
|
|
|
#undef no_extend
|
|
|
|
#undef extend
|
|
|
|
#undef addop
|
|
|
|
#undef subop
|
|
|
|
|
|
|
|
case Operation::ADDAw:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l += u_extend16(src.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::ADDAl:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l += src.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::SUBAw:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l -= u_extend16(src.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::SUBAl:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l -= src.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
2022-05-05 00:57:22 +00:00
|
|
|
// BTST/BCLR/etc: modulo for the mask depends on whether memory or a data register is the target.
|
|
|
|
case Operation::BTST: {
|
|
|
|
const uint32_t mask = (instruction.mode<1>() == AddressingMode::DataRegisterDirect) ? 31 : 7;
|
|
|
|
status.zero_result_ = dest.l & (1 << (src.l & mask));
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::BCLR: {
|
|
|
|
const uint32_t mask = (instruction.mode<1>() == AddressingMode::DataRegisterDirect) ? 31 : 7;
|
|
|
|
|
|
|
|
status.zero_result_ = dest.l & (1 << (src.l & mask));
|
|
|
|
dest.l &= ~(1 << (src.l & mask));
|
|
|
|
|
2022-04-28 20:55:47 +00:00
|
|
|
// // Clearing in the top word requires an extra four cycles.
|
2022-04-29 08:51:02 +00:00
|
|
|
// set_next_microcycle_length(HalfCycles(8 + ((src.l & 31) / 16) * 4));
|
2022-05-05 00:57:22 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::BCHG: {
|
|
|
|
const uint32_t mask = (instruction.mode<1>() == AddressingMode::DataRegisterDirect) ? 31 : 7;
|
|
|
|
|
|
|
|
status.zero_result_ = dest.l & (1 << (src.l & mask));
|
|
|
|
dest.l ^= 1 << (src.l & mask);
|
2022-04-29 08:51:02 +00:00
|
|
|
// set_next_microcycle_length(HalfCycles(4 + (((src.l & 31) / 16) * 4)));
|
2022-05-05 00:57:22 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::BSET: {
|
|
|
|
const uint32_t mask = (instruction.mode<1>() == AddressingMode::DataRegisterDirect) ? 31 : 7;
|
|
|
|
|
|
|
|
status.zero_result_ = dest.l & (1 << (src.l & mask));
|
|
|
|
dest.l |= 1 << (src.l & mask);
|
2022-04-29 08:51:02 +00:00
|
|
|
// set_next_microcycle_length(HalfCycles(4 + (((src.l & 31) / 16) * 4)));
|
2022-05-05 00:57:22 +00:00
|
|
|
} break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
// Bcc: ordinarily evaluates the relevant condition and displacement size and then:
|
|
|
|
// if condition is false, schedules bus operations to get past this instruction;
|
|
|
|
// otherwise applies the offset and schedules bus operations to refill the prefetch queue.
|
|
|
|
//
|
|
|
|
// Special case: the condition code is 1, which is ordinarily false. In that case this
|
|
|
|
// is the trailing step of a BSR.
|
2022-04-29 21:12:06 +00:00
|
|
|
case Operation::Bccb:
|
2022-05-03 18:45:49 +00:00
|
|
|
if(status.evaluate_condition(instruction.condition())) {
|
2022-05-03 19:21:42 +00:00
|
|
|
flow_controller.add_pc(int8_t(src.b) + 2);
|
2022-05-03 18:45:49 +00:00
|
|
|
} else {
|
|
|
|
flow_controller.decline_branch();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2022-04-29 21:12:06 +00:00
|
|
|
case Operation::Bccw:
|
2022-05-03 18:45:49 +00:00
|
|
|
if(status.evaluate_condition(instruction.condition())) {
|
2022-05-03 19:21:42 +00:00
|
|
|
flow_controller.add_pc(int16_t(src.w) + 2);
|
2022-05-03 18:45:49 +00:00
|
|
|
} else {
|
|
|
|
flow_controller.decline_branch();
|
|
|
|
}
|
|
|
|
break;
|
2022-04-29 21:12:06 +00:00
|
|
|
|
2022-05-03 18:45:49 +00:00
|
|
|
case Operation::Bccl:
|
|
|
|
if(status.evaluate_condition(instruction.condition())) {
|
2022-05-03 19:21:42 +00:00
|
|
|
flow_controller.add_pc(src.l + 2);
|
2022-04-29 21:12:06 +00:00
|
|
|
} else {
|
|
|
|
flow_controller.decline_branch();
|
|
|
|
}
|
2022-05-03 18:45:49 +00:00
|
|
|
break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
2022-05-03 19:32:54 +00:00
|
|
|
case Operation::BSRb:
|
|
|
|
flow_controller.bsr(int8_t(src.b) + 2);
|
|
|
|
break;
|
|
|
|
case Operation::BSRw:
|
|
|
|
flow_controller.bsr(int16_t(src.w) + 2);
|
|
|
|
break;
|
|
|
|
case Operation::BSRl:
|
|
|
|
flow_controller.bsr(src.l + 2);
|
|
|
|
break;
|
|
|
|
|
2022-04-29 21:12:06 +00:00
|
|
|
case Operation::DBcc:
|
|
|
|
// Decide what sort of DBcc this is.
|
2022-04-30 18:08:51 +00:00
|
|
|
if(!status.evaluate_condition(instruction.condition())) {
|
2022-04-29 21:12:06 +00:00
|
|
|
-- src.w;
|
|
|
|
|
|
|
|
if(src.w == 0xffff) {
|
|
|
|
// This DBcc will be ignored as the counter has underflowed.
|
|
|
|
flow_controller.decline_branch();
|
|
|
|
} else {
|
|
|
|
// Take the branch.
|
2022-05-03 19:21:42 +00:00
|
|
|
flow_controller.add_pc(int16_t(dest.l) + 2);
|
2022-04-29 21:12:06 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// This DBcc will be ignored as the condition is true.
|
|
|
|
flow_controller.decline_branch();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::Scc:
|
2022-05-03 18:23:57 +00:00
|
|
|
src.b = status.evaluate_condition(instruction.condition()) ? 0xff : 0x00;
|
2022-04-29 21:12:06 +00:00
|
|
|
break;
|
|
|
|
|
2022-04-28 20:55:47 +00:00
|
|
|
/*
|
|
|
|
CLRs: store 0 to the destination, set the zero flag, and clear
|
|
|
|
negative, overflow and carry.
|
|
|
|
*/
|
|
|
|
case Operation::CLRb:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.b = 0;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.overflow_flag_ = status.carry_flag_ = status.zero_result_ = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::CLRw:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.w = 0;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.overflow_flag_ = status.carry_flag_ = status.zero_result_ = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::CLRl:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l = 0;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.overflow_flag_ = status.carry_flag_ = status.zero_result_ = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
CMP.b, CMP.l and CMP.w: sets the condition flags (other than extend) based on a subtraction
|
|
|
|
of the source from the destination; the result of the subtraction is not stored.
|
|
|
|
*/
|
|
|
|
case Operation::CMPb: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const uint8_t source = src.b;
|
|
|
|
const uint8_t destination = dest.b;
|
2022-04-28 20:55:47 +00:00
|
|
|
const int result = destination - source;
|
|
|
|
|
|
|
|
status.zero_result_ = result & 0xff;
|
|
|
|
status.carry_flag_ = decltype(status.carry_flag_)(result & ~0xff);
|
|
|
|
status.negative_flag_ = result & 0x80;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x80;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::CMPw: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const uint16_t source = src.w;
|
2022-05-03 13:05:34 +00:00
|
|
|
const uint16_t destination = dest.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
const int result = destination - source;
|
|
|
|
|
|
|
|
status.zero_result_ = result & 0xffff;
|
|
|
|
status.carry_flag_ = decltype(status.carry_flag_)(result & ~0xffff);
|
|
|
|
status.negative_flag_ = result & 0x8000;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x8000;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::CMPAw: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const auto source = uint64_t(u_extend16(src.w));
|
|
|
|
const uint64_t destination = dest.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
const auto result = destination - source;
|
|
|
|
|
|
|
|
status.zero_result_ = uint32_t(result);
|
|
|
|
status.carry_flag_ = result >> 32;
|
|
|
|
status.negative_flag_ = result & 0x80000000;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x80000000;
|
|
|
|
} break;
|
|
|
|
|
2022-05-03 13:20:02 +00:00
|
|
|
// TODO: is there any benefit to keeping both of these?
|
|
|
|
case Operation::CMPAl:
|
2022-04-28 20:55:47 +00:00
|
|
|
case Operation::CMPl: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const auto source = uint64_t(src.l);
|
|
|
|
const auto destination = uint64_t(dest.l);
|
2022-04-28 20:55:47 +00:00
|
|
|
const auto result = destination - source;
|
|
|
|
|
|
|
|
status.zero_result_ = uint32_t(result);
|
|
|
|
status.carry_flag_ = result >> 32;
|
|
|
|
status.negative_flag_ = result & 0x80000000;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x80000000;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
// JMP: copies EA(0) to the program counter.
|
2022-04-29 21:12:06 +00:00
|
|
|
case Operation::JMP:
|
2022-04-30 00:30:48 +00:00
|
|
|
flow_controller.set_pc(src.l);
|
2022-04-29 21:12:06 +00:00
|
|
|
break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
2022-05-03 19:49:55 +00:00
|
|
|
// JSR: jump to EA(0), pushing the current PC to the stack.
|
|
|
|
case Operation::JSR:
|
|
|
|
flow_controller.jsr(src.l);
|
|
|
|
break;
|
|
|
|
|
2022-04-28 20:55:47 +00:00
|
|
|
/*
|
|
|
|
MOVE.b, MOVE.l and MOVE.w: move the least significant byte or word, or the entire long word,
|
|
|
|
and set negative, zero, overflow and carry as appropriate.
|
|
|
|
*/
|
|
|
|
case Operation::MOVEb:
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = dest.b = src.b;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x80;
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::MOVEw:
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = dest.w = src.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x8000;
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::MOVEl:
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = dest.l = src.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x80000000;
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
MOVEA.l: move the entire long word;
|
|
|
|
MOVEA.w: move the least significant word and sign extend it.
|
|
|
|
Neither sets any flags.
|
|
|
|
*/
|
|
|
|
case Operation::MOVEAw:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l = u_extend16(src.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::MOVEAl:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l = src.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
2022-04-29 21:12:06 +00:00
|
|
|
case Operation::LEA:
|
2022-04-30 00:30:48 +00:00
|
|
|
dest.l = src.l;
|
2022-04-29 21:12:06 +00:00
|
|
|
break;
|
|
|
|
|
2022-04-28 20:55:47 +00:00
|
|
|
// case Operation::PEA:
|
|
|
|
// destination_bus_data_ = effective_address_[0];
|
|
|
|
// break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Status word moves and manipulations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
case Operation::MOVEtoSR:
|
2022-04-29 08:51:02 +00:00
|
|
|
status.set_status(src.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::MOVEfromSR:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.w = status.status();
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::MOVEtoCCR:
|
2022-04-29 08:51:02 +00:00
|
|
|
status.set_ccr(src.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::EXTbtow:
|
2022-05-04 00:17:36 +00:00
|
|
|
src.w = uint16_t(int8_t(src.b));
|
2022-04-28 20:55:47 +00:00
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
2022-05-04 00:17:36 +00:00
|
|
|
status.zero_result_ = src.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x8000;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::EXTwtol:
|
2022-05-04 00:17:36 +00:00
|
|
|
src.l = u_extend16(src.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
2022-05-04 00:17:36 +00:00
|
|
|
status.zero_result_ = src.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x80000000;
|
|
|
|
break;
|
|
|
|
|
|
|
|
#define and_op(a, b) a &= b
|
|
|
|
#define or_op(a, b) a |= b
|
|
|
|
#define eor_op(a, b) a ^= b
|
|
|
|
|
|
|
|
#define apply(op, func) { \
|
|
|
|
auto sr = status.status(); \
|
2022-04-29 08:51:02 +00:00
|
|
|
op(sr, src.w); \
|
2022-04-28 20:55:47 +00:00
|
|
|
status.func(sr); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define apply_op_sr(op) apply(op, set_status)
|
|
|
|
#define apply_op_ccr(op) apply(op, set_ccr)
|
|
|
|
|
|
|
|
case Operation::ANDItoSR: apply_op_sr(and_op); break;
|
|
|
|
case Operation::EORItoSR: apply_op_sr(eor_op); break;
|
|
|
|
case Operation::ORItoSR: apply_op_sr(or_op); break;
|
|
|
|
|
|
|
|
case Operation::ANDItoCCR: apply_op_ccr(and_op); break;
|
|
|
|
case Operation::EORItoCCR: apply_op_ccr(eor_op); break;
|
|
|
|
case Operation::ORItoCCR: apply_op_ccr(or_op); break;
|
|
|
|
|
|
|
|
#undef apply_op_ccr
|
|
|
|
#undef apply_op_sr
|
|
|
|
#undef apply
|
|
|
|
#undef eor_op
|
|
|
|
#undef or_op
|
|
|
|
#undef and_op
|
|
|
|
|
|
|
|
/*
|
|
|
|
Multiplications.
|
|
|
|
*/
|
|
|
|
|
|
|
|
case Operation::MULU: {
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l = dest.w * src.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.carry_flag_ = status.overflow_flag_ = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = dest.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x80000000;
|
|
|
|
|
2022-04-29 08:51:02 +00:00
|
|
|
int number_of_ones = src.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
convert_to_bit_count_16(number_of_ones);
|
|
|
|
|
|
|
|
// Time taken = 38 cycles + 2 cycles for every 1 in the source.
|
2022-04-29 00:42:04 +00:00
|
|
|
flow_controller.consume_cycles(2 * number_of_ones + 34);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::MULS: {
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l =
|
|
|
|
u_extend16(dest.w) * u_extend16(src.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
status.carry_flag_ = status.overflow_flag_ = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = dest.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x80000000;
|
|
|
|
|
|
|
|
// Find the number of 01 or 10 pairs in the 17-bit number
|
|
|
|
// formed by the source value with a 0 suffix.
|
2022-04-29 08:51:02 +00:00
|
|
|
int number_of_pairs = src.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
number_of_pairs = (number_of_pairs ^ (number_of_pairs << 1)) & 0xffff;
|
|
|
|
convert_to_bit_count_16(number_of_pairs);
|
|
|
|
|
|
|
|
// Time taken = 38 cycles + 2 cycles per 1 in the source.
|
2022-04-29 00:42:04 +00:00
|
|
|
flow_controller.consume_cycles(2 * number_of_pairs + 34);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Divisions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define announce_divide_by_zero() \
|
|
|
|
status.negative_flag_ = status.overflow_flag_ = 0; \
|
|
|
|
status.zero_result_ = 1; \
|
2022-04-29 07:38:23 +00:00
|
|
|
flow_controller.raise_exception(5);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
case Operation::DIVU: {
|
|
|
|
status.carry_flag_ = 0;
|
|
|
|
|
|
|
|
// An attempt to divide by zero schedules an exception.
|
2022-04-29 08:51:02 +00:00
|
|
|
if(!src.w) {
|
2022-04-28 20:55:47 +00:00
|
|
|
// Schedule a divide-by-zero exception.
|
|
|
|
announce_divide_by_zero();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-29 08:51:02 +00:00
|
|
|
uint32_t dividend = dest.l;
|
|
|
|
uint32_t divisor = src.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
const auto quotient = dividend / divisor;
|
|
|
|
|
|
|
|
// If overflow would occur, appropriate flags are set and the result is not written back.
|
|
|
|
if(quotient > 65535) {
|
|
|
|
status.overflow_flag_ = status.zero_result_ = status.negative_flag_ = 1;
|
2022-04-29 00:42:04 +00:00
|
|
|
flow_controller.consume_cycles(3*2);
|
2022-04-28 20:55:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint16_t remainder = uint16_t(dividend % divisor);
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l = uint32_t((remainder << 16) | uint16_t(quotient));
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
status.overflow_flag_ = 0;
|
|
|
|
status.zero_result_ = quotient;
|
|
|
|
status.negative_flag_ = status.zero_result_ & 0x8000;
|
|
|
|
|
|
|
|
// Calculate cost; this is based on the flowchart in yacht.txt.
|
|
|
|
// I could actually calculate the division result here, since this is
|
|
|
|
// a classic divide algorithm, but would rather that errors produce
|
|
|
|
// incorrect timing only, not incorrect timing plus incorrect results.
|
|
|
|
int cycles_expended = 12; // Covers the nn n to get into the loop.
|
|
|
|
|
|
|
|
divisor <<= 16;
|
|
|
|
for(int c = 0; c < 15; ++c) {
|
|
|
|
if(dividend & 0x80000000) {
|
|
|
|
dividend = (dividend << 1) - divisor;
|
|
|
|
cycles_expended += 4; // Easy; just the fixed nn iteration cost.
|
|
|
|
} else {
|
|
|
|
dividend <<= 1;
|
|
|
|
|
|
|
|
// Yacht.txt, and indeed a real microprogram, would just subtract here
|
|
|
|
// and test the sign of the result, but this is easier to follow:
|
|
|
|
if (dividend >= divisor) {
|
|
|
|
dividend -= divisor;
|
|
|
|
cycles_expended += 6; // i.e. the original nn plus one further n before going down the MSB=0 route.
|
|
|
|
} else {
|
|
|
|
cycles_expended += 8; // The costliest path (since in real life it's a subtraction and then a step
|
|
|
|
// back from there) — all costs accrue. So the fixed nn loop plus another n,
|
|
|
|
// plus another one.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-29 00:42:04 +00:00
|
|
|
flow_controller.consume_cycles(cycles_expended);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::DIVS: {
|
|
|
|
status.carry_flag_ = 0;
|
|
|
|
|
|
|
|
// An attempt to divide by zero schedules an exception.
|
2022-04-29 08:51:02 +00:00
|
|
|
if(!src.w) {
|
2022-04-28 20:55:47 +00:00
|
|
|
// Schedule a divide-by-zero exception.
|
|
|
|
announce_divide_by_zero()
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-04-29 08:51:02 +00:00
|
|
|
const int32_t signed_dividend = int32_t(dest.l);
|
|
|
|
const int32_t signed_divisor = s_extend16(src.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
const auto result_sign =
|
|
|
|
( (0 <= signed_dividend) - (signed_dividend < 0) ) *
|
|
|
|
( (0 <= signed_divisor) - (signed_divisor < 0) );
|
|
|
|
|
|
|
|
const uint32_t dividend = uint32_t(std::abs(signed_dividend));
|
|
|
|
const uint32_t divisor = uint32_t(std::abs(signed_divisor));
|
|
|
|
|
|
|
|
int cycles_expended = 12; // Covers the nn nnn n to get beyond the sign test.
|
|
|
|
if(signed_dividend < 0) {
|
|
|
|
cycles_expended += 2; // An additional microycle applies if the dividend is negative.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for overflow. If it exists, work here is already done.
|
|
|
|
const auto quotient = dividend / divisor;
|
|
|
|
if(quotient > 32767) {
|
|
|
|
status.overflow_flag_ = 1;
|
2022-04-29 00:42:04 +00:00
|
|
|
flow_controller.consume_cycles(6*2);
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint16_t remainder = uint16_t(signed_dividend % signed_divisor);
|
|
|
|
const int signed_quotient = result_sign*int(quotient);
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l = uint32_t((remainder << 16) | uint16_t(signed_quotient));
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
status.zero_result_ = decltype(status.zero_result_)(signed_quotient);
|
|
|
|
status.negative_flag_ = status.zero_result_ & 0x8000;
|
|
|
|
status.overflow_flag_ = 0;
|
|
|
|
|
|
|
|
// Algorithm here: there is a fixed cost per unset bit
|
|
|
|
// in the first 15 bits of the unsigned quotient.
|
|
|
|
auto positive_quotient_bits = ~quotient & 0xfffe;
|
|
|
|
convert_to_bit_count_16(positive_quotient_bits);
|
|
|
|
cycles_expended += 2 * positive_quotient_bits;
|
|
|
|
|
|
|
|
// There's then no way to terminate the loop that isn't at least ten cycles long;
|
|
|
|
// there's also a fixed overhead per bit. The two together add up to the 104 below.
|
|
|
|
cycles_expended += 104;
|
|
|
|
|
|
|
|
// This picks up at 'No more bits' in yacht.txt's diagram.
|
|
|
|
if(signed_divisor < 0) {
|
|
|
|
cycles_expended += 2;
|
|
|
|
} else if(signed_dividend < 0) {
|
|
|
|
cycles_expended += 4;
|
|
|
|
}
|
2022-04-29 00:42:04 +00:00
|
|
|
flow_controller.consume_cycles(cycles_expended);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
#undef announce_divide_by_zero
|
|
|
|
|
|
|
|
// TRAP, which is a nicer form of ILLEGAL.
|
2022-04-29 18:43:30 +00:00
|
|
|
case Operation::TRAP:
|
|
|
|
flow_controller.raise_exception(src.l + 32);
|
|
|
|
break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
2022-04-29 18:43:30 +00:00
|
|
|
case Operation::TRAPV: {
|
|
|
|
if(status.overflow_flag_) {
|
|
|
|
flow_controller.raise_exception(7);
|
|
|
|
}
|
|
|
|
} break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
case Operation::CHK: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const bool is_under = s_extend16(dest.w) < 0;
|
|
|
|
const bool is_over = s_extend16(dest.w) > s_extend16(src.w);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = dest.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
// Test applied for N:
|
|
|
|
//
|
|
|
|
// if Dn < 0, set negative flag;
|
|
|
|
// otherwise, if Dn > <ea>, reset negative flag.
|
2022-04-29 18:43:30 +00:00
|
|
|
if(is_over) status.negative_flag_ = 0;
|
|
|
|
if(is_under) status.negative_flag_ = 1;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
// No exception is the default course of action; deviate only if an
|
|
|
|
// exception is necessary.
|
|
|
|
if(is_under || is_over) {
|
2022-04-29 18:43:30 +00:00
|
|
|
if(is_over) {
|
|
|
|
flow_controller.consume_cycles(10);
|
|
|
|
} else {
|
|
|
|
flow_controller.consume_cycles(12);
|
|
|
|
}
|
|
|
|
flow_controller.raise_exception(6);
|
2022-04-28 20:55:47 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
NEGs: negatives the destination, setting the zero,
|
|
|
|
negative, overflow and carry flags appropriate, and extend.
|
|
|
|
|
|
|
|
NB: since the same logic as SUB is used to calculate overflow,
|
|
|
|
and SUB calculates `destination - source`, the NEGs deliberately
|
|
|
|
label 'source' and 'destination' differently from Motorola.
|
|
|
|
*/
|
|
|
|
case Operation::NEGb: {
|
|
|
|
const int destination = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
const int source = dest.b;
|
2022-04-28 20:55:47 +00:00
|
|
|
const auto result = destination - source;
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.b = uint8_t(result);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
status.zero_result_ = result & 0xff;
|
|
|
|
status.extend_flag_ = status.carry_flag_ = decltype(status.carry_flag_)(result & ~0xff);
|
|
|
|
status.negative_flag_ = result & 0x80;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x80;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::NEGw: {
|
|
|
|
const int destination = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
const int source = dest.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
const auto result = destination - source;
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.w = uint16_t(result);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
status.zero_result_ = result & 0xffff;
|
|
|
|
status.extend_flag_ = status.carry_flag_ = decltype(status.carry_flag_)(result & ~0xffff);
|
|
|
|
status.negative_flag_ = result & 0x8000;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x8000;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::NEGl: {
|
|
|
|
const uint64_t destination = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
const uint64_t source = dest.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
const auto result = destination - source;
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l = uint32_t(result);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
status.zero_result_ = uint_fast32_t(result);
|
|
|
|
status.extend_flag_ = status.carry_flag_ = result >> 32;
|
|
|
|
status.negative_flag_ = result & 0x80000000;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x80000000;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
NEGXs: NEG, with extend.
|
|
|
|
*/
|
|
|
|
case Operation::NEGXb: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const int source = dest.b;
|
2022-04-28 20:55:47 +00:00
|
|
|
const int destination = 0;
|
|
|
|
const auto result = destination - source - (status.extend_flag_ ? 1 : 0);
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.b = uint8_t(result);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
status.zero_result_ |= result & 0xff;
|
|
|
|
status.extend_flag_ = status.carry_flag_ = decltype(status.carry_flag_)(result & ~0xff);
|
|
|
|
status.negative_flag_ = result & 0x80;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x80;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::NEGXw: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const int source = dest.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
const int destination = 0;
|
|
|
|
const auto result = destination - source - (status.extend_flag_ ? 1 : 0);
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.w = uint16_t(result);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
status.zero_result_ |= result & 0xffff;
|
|
|
|
status.extend_flag_ = status.carry_flag_ = decltype(status.carry_flag_)(result & ~0xffff);
|
|
|
|
status.negative_flag_ = result & 0x8000;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x8000;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::NEGXl: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const uint64_t source = dest.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
const uint64_t destination = 0;
|
|
|
|
const auto result = destination - source - (status.extend_flag_ ? 1 : 0);
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l = uint32_t(result);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
status.zero_result_ |= uint_fast32_t(result);
|
|
|
|
status.extend_flag_ = status.carry_flag_ = result >> 32;
|
|
|
|
status.negative_flag_ = result & 0x80000000;
|
|
|
|
status.overflow_flag_ = sub_overflow() & 0x80000000;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
The no-op.
|
|
|
|
*/
|
2022-04-29 21:12:06 +00:00
|
|
|
case Operation::NOP: break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
LINK and UNLINK help with stack frames, allowing a certain
|
|
|
|
amount of stack space to be allocated or deallocated.
|
|
|
|
*/
|
|
|
|
|
2022-05-04 12:26:11 +00:00
|
|
|
case Operation::LINKw:
|
|
|
|
flow_controller.link(src.l, int16_t(dest.w));
|
|
|
|
break;
|
2022-04-29 18:43:30 +00:00
|
|
|
|
2022-05-04 12:26:11 +00:00
|
|
|
case Operation::UNLINK:
|
|
|
|
flow_controller.unlink(src.l);
|
|
|
|
break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
TAS: sets zero and negative depending on the current value of the destination,
|
|
|
|
and sets the high bit.
|
|
|
|
*/
|
|
|
|
|
|
|
|
case Operation::TAS:
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = dest.b;
|
|
|
|
status.negative_flag_ = dest.b & 0x80;
|
|
|
|
dest.b |= 0x80;
|
2022-04-28 20:55:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Bitwise operators: AND, OR and EOR. All three clear the overflow and carry flags,
|
|
|
|
and set zero and negative appropriately.
|
|
|
|
*/
|
|
|
|
#define op_and(x, y) x &= y
|
|
|
|
#define op_or(x, y) x |= y
|
|
|
|
#define op_eor(x, y) x ^= y
|
|
|
|
|
|
|
|
#define bitwise(source, dest, sign_mask, operator) \
|
|
|
|
operator(dest, source); \
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0; \
|
|
|
|
status.zero_result_ = dest; \
|
|
|
|
status.negative_flag_ = dest & sign_mask;
|
|
|
|
|
|
|
|
#define andx(source, dest, sign_mask) bitwise(source, dest, sign_mask, op_and)
|
|
|
|
#define eorx(source, dest, sign_mask) bitwise(source, dest, sign_mask, op_eor)
|
|
|
|
#define orx(source, dest, sign_mask) bitwise(source, dest, sign_mask, op_or)
|
|
|
|
|
2022-04-29 08:51:02 +00:00
|
|
|
#define op_bwl(name, op) \
|
|
|
|
case Operation::name##b: op(src.b, dest.b, 0x80); break; \
|
|
|
|
case Operation::name##w: op(src.w, dest.w, 0x8000); break; \
|
|
|
|
case Operation::name##l: op(src.l, dest.l, 0x80000000); break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
op_bwl(AND, andx);
|
|
|
|
op_bwl(EOR, eorx);
|
|
|
|
op_bwl(OR, orx);
|
|
|
|
|
|
|
|
#undef op_bwl
|
|
|
|
#undef orx
|
|
|
|
#undef eorx
|
|
|
|
#undef andx
|
|
|
|
#undef bitwise
|
|
|
|
#undef op_eor
|
|
|
|
#undef op_or
|
|
|
|
#undef op_and
|
|
|
|
|
|
|
|
// NOTs: take the logical inverse, affecting the negative and zero flags.
|
|
|
|
case Operation::NOTb:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.b ^= 0xff;
|
|
|
|
status.zero_result_ = dest.b;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x80;
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::NOTw:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.w ^= 0xffff;
|
|
|
|
status.zero_result_ = dest.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x8000;
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::NOTl:
|
2022-04-29 08:51:02 +00:00
|
|
|
dest.l ^= 0xffffffff;
|
|
|
|
status.zero_result_ = dest.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x80000000;
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
|
|
|
break;
|
|
|
|
|
2022-05-02 16:57:45 +00:00
|
|
|
#define sbcd(d) \
|
2022-04-28 20:55:47 +00:00
|
|
|
/* Perform the BCD arithmetic by evaluating the two nibbles separately. */ \
|
|
|
|
const int unadjusted_result = destination - source - (status.extend_flag_ ? 1 : 0); \
|
|
|
|
int result = (destination & 0xf) - (source & 0xf) - (status.extend_flag_ ? 1 : 0); \
|
|
|
|
if((result & 0x1f) > 0x09) result -= 0x06; \
|
|
|
|
result += (destination & 0xf0) - (source & 0xf0); \
|
|
|
|
status.extend_flag_ = status.carry_flag_ = decltype(status.carry_flag_)((result & 0x1ff) > 0x99); \
|
|
|
|
if(status.carry_flag_) result -= 0x60; \
|
|
|
|
\
|
|
|
|
/* Set all flags essentially as if this were normal subtraction. */ \
|
|
|
|
status.zero_result_ |= result & 0xff; \
|
|
|
|
status.negative_flag_ = result & 0x80; \
|
|
|
|
status.overflow_flag_ = unadjusted_result & ~result & 0x80; \
|
|
|
|
\
|
|
|
|
/* Store the result. */ \
|
2022-05-02 16:57:45 +00:00
|
|
|
d = uint8_t(result);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
SBCD subtracts the lowest byte of the source from that of the destination using
|
|
|
|
BCD arithmetic, obeying the extend flag.
|
|
|
|
*/
|
|
|
|
case Operation::SBCD: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const uint8_t source = src.b;
|
|
|
|
const uint8_t destination = dest.b;
|
2022-05-02 16:57:45 +00:00
|
|
|
sbcd(dest.b);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
/*
|
2022-05-02 16:57:45 +00:00
|
|
|
NBCD is like SBCD except that the result is 0 - source rather than
|
2022-04-28 20:55:47 +00:00
|
|
|
destination - source.
|
|
|
|
*/
|
|
|
|
case Operation::NBCD: {
|
2022-05-02 16:57:45 +00:00
|
|
|
const uint8_t source = src.b;
|
2022-04-28 20:55:47 +00:00
|
|
|
const uint8_t destination = 0;
|
2022-05-02 16:57:45 +00:00
|
|
|
sbcd(src.b);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
2022-05-02 11:45:07 +00:00
|
|
|
#undef sbcd
|
|
|
|
|
2022-04-28 20:55:47 +00:00
|
|
|
// EXG and SWAP exchange/swap words or long words.
|
|
|
|
|
|
|
|
case Operation::EXG: {
|
2022-04-29 08:51:02 +00:00
|
|
|
const auto temporary = src.l;
|
|
|
|
src.l = dest.l;
|
|
|
|
dest.l = temporary;
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case Operation::SWAP: {
|
2022-05-04 00:17:36 +00:00
|
|
|
uint16_t *const words = reinterpret_cast<uint16_t *>(&src.l);
|
2022-04-29 08:51:02 +00:00
|
|
|
const auto temporary = words[0];
|
|
|
|
words[0] = words[1];
|
|
|
|
words[1] = temporary;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
2022-05-04 00:17:36 +00:00
|
|
|
status.zero_result_ = src.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = temporary & 0x8000;
|
|
|
|
status.overflow_flag_ = status.carry_flag_ = 0;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Shifts and rotates.
|
|
|
|
*/
|
|
|
|
#define set_neg_zero(v, m) \
|
|
|
|
status.zero_result_ = decltype(status.zero_result_)(v); \
|
|
|
|
status.negative_flag_ = status.zero_result_ & decltype(status.negative_flag_)(m);
|
|
|
|
|
|
|
|
#define set_neg_zero_overflow(v, m) \
|
|
|
|
set_neg_zero(v, m); \
|
|
|
|
status.overflow_flag_ = (decltype(status.zero_result_)(value) ^ status.zero_result_) & decltype(status.overflow_flag_)(m);
|
|
|
|
|
|
|
|
#define decode_shift_count() \
|
2022-04-29 08:51:02 +00:00
|
|
|
int shift_count = (decoded_instruction_.l & 32) ? data_[(decoded_instruction_.l >> 9) & 7].l&63 : ( ((decoded_instruction_.l >> 9)&7) ? ((decoded_instruction_.l >> 9)&7) : 8) ; \
|
2022-04-29 07:38:23 +00:00
|
|
|
flow_controller.consume_cycles(2 * shift_count);
|
2022-04-28 20:55:47 +00:00
|
|
|
|
2022-05-04 23:44:59 +00:00
|
|
|
//#define set_flags_b(t) set_flags(dest.b, 0x80, t)
|
|
|
|
#define set_flags_w(t) set_flags(src.w, 0x8000, t)
|
|
|
|
//#define set_flags_l(t) set_flags(dest.l, 0x80000000, t)
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
#define asl(destination, size) {\
|
|
|
|
decode_shift_count(); \
|
|
|
|
const auto value = destination; \
|
|
|
|
\
|
|
|
|
if(!shift_count) { \
|
|
|
|
status.carry_flag_ = status.overflow_flag_ = 0; \
|
|
|
|
} else { \
|
|
|
|
destination = (shift_count < size) ? decltype(destination)(value << shift_count) : 0; \
|
|
|
|
status.status.extend_flag_ = status.carry_flag_ = decltype(status.carry_flag_)(value) & decltype(status.carry_flag_)( (1u << (size - 1)) >> (shift_count - 1) ); \
|
|
|
|
\
|
|
|
|
if(shift_count >= size) status.overflow_flag_ = value && (value != decltype(value)(-1)); \
|
|
|
|
else { \
|
|
|
|
const auto mask = decltype(destination)(0xffffffff << (size - shift_count)); \
|
|
|
|
status.overflow_flag_ = mask & value && ((mask & value) != mask); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
set_neg_zero(destination, 1 << (size - 1)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
case Operation::ASLm: {
|
2022-05-04 23:44:59 +00:00
|
|
|
const auto value = src.w;
|
|
|
|
src.w = uint16_t(value << 1);
|
2022-04-28 20:55:47 +00:00
|
|
|
status.extend_flag_ = status.carry_flag_ = value & 0x8000;
|
2022-05-04 23:44:59 +00:00
|
|
|
set_neg_zero_overflow(src.w, 0x8000);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
2022-04-29 08:51:02 +00:00
|
|
|
// case Operation::ASLb: asl(dest.b, 8); break;
|
2022-04-29 18:43:30 +00:00
|
|
|
// case Operation::ASLw: asl(dest.w, 16); break;
|
|
|
|
// case Operation::ASLl: asl(dest.l, 32); break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
#define asr(destination, size) {\
|
|
|
|
decode_shift_count(); \
|
|
|
|
const auto value = destination; \
|
|
|
|
\
|
|
|
|
if(!shift_count) { \
|
|
|
|
carry_flag_ = 0; \
|
|
|
|
} else { \
|
|
|
|
destination = (shift_count < size) ? \
|
|
|
|
decltype(destination)(\
|
|
|
|
(value >> shift_count) | \
|
|
|
|
((value & decltype(value)(1 << (size - 1)) ? 0xffffffff : 0x000000000) << (size - shift_count)) \
|
|
|
|
) : \
|
|
|
|
decltype(destination)( \
|
|
|
|
(value & decltype(value)(1 << (size - 1))) ? 0xffffffff : 0x000000000 \
|
|
|
|
); \
|
|
|
|
status.extend_flag_ = status.carry_flag_ = decltype(carry_flag_)(value) & decltype(carry_flag_)(1 << (shift_count - 1)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
set_neg_zero_overflow(destination, 1 << (size - 1)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
case Operation::ASRm: {
|
2022-05-04 23:44:59 +00:00
|
|
|
const auto value = src.w;
|
|
|
|
src.w = (value&0x8000) | (value >> 1);
|
2022-04-28 20:55:47 +00:00
|
|
|
status.extend_flag_ = status.carry_flag_ = value & 1;
|
2022-05-04 23:44:59 +00:00
|
|
|
set_neg_zero_overflow(src.w, 0x8000);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
2022-04-29 08:51:02 +00:00
|
|
|
// case Operation::ASRb: asr(dest.b, 8); break;
|
2022-04-29 18:43:30 +00:00
|
|
|
// case Operation::ASRw: asr(dest.w, 16); break;
|
|
|
|
// case Operation::ASRl: asr(dest.l, 32); break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
#undef set_neg_zero_overflow
|
|
|
|
#define set_neg_zero_overflow(v, m) \
|
|
|
|
set_neg_zero(v, m); \
|
|
|
|
status.overflow_flag_ = 0;
|
|
|
|
|
|
|
|
#undef set_flags
|
|
|
|
#define set_flags(v, m, t) \
|
|
|
|
status.zero_result_ = v; \
|
|
|
|
status.negative_flag_ = status.zero_result_ & (m); \
|
|
|
|
status.overflow_flag_ = 0; \
|
|
|
|
status.carry_flag_ = value & (t);
|
|
|
|
|
|
|
|
#define lsl(destination, size) {\
|
|
|
|
decode_shift_count(); \
|
|
|
|
const auto value = destination; \
|
|
|
|
\
|
|
|
|
if(!shift_count) { \
|
|
|
|
carry_flag_ = 0; \
|
|
|
|
} else { \
|
|
|
|
destination = (shift_count < size) ? decltype(destination)(value << shift_count) : 0; \
|
|
|
|
status.extend_flag_ = status.carry_flag_ = decltype(status.carry_flag_)(value) & decltype(status.carry_flag_)( (1u << (size - 1)) >> (shift_count - 1) ); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
set_neg_zero_overflow(destination, 1 << (size - 1)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
case Operation::LSLm: {
|
2022-05-04 23:44:59 +00:00
|
|
|
const auto value = src.w;
|
|
|
|
src.w = uint16_t(value << 1);
|
2022-04-28 20:55:47 +00:00
|
|
|
status.extend_flag_ = status.carry_flag_ = value & 0x8000;
|
2022-05-04 23:44:59 +00:00
|
|
|
set_neg_zero_overflow(src.w, 0x8000);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
2022-04-29 08:51:02 +00:00
|
|
|
// case Operation::LSLb: lsl(dest.b, 8); break;
|
2022-04-29 18:43:30 +00:00
|
|
|
// case Operation::LSLw: lsl(dest.w, 16); break;
|
|
|
|
// case Operation::LSLl: lsl(dest.l, 32); break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
#define lsr(destination, size) {\
|
|
|
|
decode_shift_count(); \
|
|
|
|
const auto value = destination; \
|
|
|
|
\
|
|
|
|
if(!shift_count) { \
|
|
|
|
status.carry_flag_ = 0; \
|
|
|
|
} else { \
|
|
|
|
destination = (shift_count < size) ? (value >> shift_count) : 0; \
|
|
|
|
status.extend_flag_ = status.carry_flag_ = value & decltype(status.carry_flag_)(1 << (shift_count - 1)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
set_neg_zero_overflow(destination, 1 << (size - 1)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
case Operation::LSRm: {
|
2022-05-04 23:44:59 +00:00
|
|
|
const auto value = src.w;
|
|
|
|
src.w = value >> 1;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.extend_flag_ = status.carry_flag_ = value & 1;
|
2022-05-04 23:44:59 +00:00
|
|
|
set_neg_zero_overflow(src.w, 0x8000);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
2022-04-29 08:51:02 +00:00
|
|
|
// case Operation::LSRb: lsr(dest.b, 8); break;
|
2022-04-29 18:43:30 +00:00
|
|
|
// case Operation::LSRw: lsr(dest.w, 16); break;
|
|
|
|
// case Operation::LSRl: lsr(dest.l, 32); break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
#define rol(destination, size) { \
|
|
|
|
decode_shift_count(); \
|
|
|
|
const auto value = destination; \
|
|
|
|
\
|
|
|
|
if(!shift_count) { \
|
|
|
|
status.carry_flag_ = 0; \
|
|
|
|
} else { \
|
|
|
|
shift_count &= (size - 1); \
|
|
|
|
destination = decltype(destination)( \
|
|
|
|
(value << shift_count) | \
|
|
|
|
(value >> (size - shift_count)) \
|
|
|
|
); \
|
|
|
|
status.carry_flag_ = decltype(status.carry_flag_)(destination & 1); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
set_neg_zero_overflow(destination, 1 << (size - 1)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
case Operation::ROLm: {
|
2022-05-04 23:44:59 +00:00
|
|
|
const auto value = src.w;
|
|
|
|
src.w = uint16_t((value << 1) | (value >> 15));
|
|
|
|
status.carry_flag_ = src.w & 1;
|
|
|
|
set_neg_zero_overflow(src.w, 0x8000);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
2022-04-29 08:51:02 +00:00
|
|
|
// case Operation::ROLb: rol(dest.b, 8); break;
|
2022-04-29 18:43:30 +00:00
|
|
|
// case Operation::ROLw: rol(dest.w, 16); break;
|
|
|
|
// case Operation::ROLl: rol(dest.l, 32); break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
#define ror(destination, size) { \
|
|
|
|
decode_shift_count(); \
|
|
|
|
const auto value = destination; \
|
|
|
|
\
|
|
|
|
if(!shift_count) { \
|
|
|
|
status.carry_flag_ = 0; \
|
|
|
|
} else { \
|
|
|
|
shift_count &= (size - 1); \
|
|
|
|
destination = decltype(destination)(\
|
|
|
|
(value >> shift_count) | \
|
|
|
|
(value << (size - shift_count)) \
|
|
|
|
);\
|
|
|
|
status.carry_flag_ = destination & decltype(status.carry_flag_)(1 << (size - 1)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
set_neg_zero_overflow(destination, 1 << (size - 1)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
case Operation::RORm: {
|
2022-05-04 23:44:59 +00:00
|
|
|
const auto value = src.w;
|
|
|
|
src.w = uint16_t((value >> 1) | (value << 15));
|
|
|
|
status.carry_flag_ = src.w & 0x8000;
|
|
|
|
set_neg_zero_overflow(src.w, 0x8000);
|
2022-04-28 20:55:47 +00:00
|
|
|
} break;
|
2022-04-29 08:51:02 +00:00
|
|
|
// case Operation::RORb: ror(dest.b, 8); break;
|
2022-04-29 18:43:30 +00:00
|
|
|
// case Operation::RORw: ror(dest.w, 16); break;
|
|
|
|
// case Operation::RORl: ror(dest.l, 32); break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
#define roxl(destination, size) { \
|
|
|
|
shift_count %= (size + 1); \
|
|
|
|
uint64_t compound = uint64_t(destination) | (status.extend_flag_ ? (1ull << size) : 0); \
|
|
|
|
compound = \
|
|
|
|
(compound << shift_count) | \
|
|
|
|
(compound >> (size + 1 - shift_count)); \
|
|
|
|
status.carry_flag_ = status.extend_flag_ = decltype(status.carry_flag_)((compound >> size) & 1); \
|
|
|
|
destination = decltype(destination)(compound); \
|
|
|
|
\
|
|
|
|
set_neg_zero_overflow(destination, 1 << (size - 1)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
case Operation::ROXLm: {
|
2022-05-04 23:44:59 +00:00
|
|
|
const auto value = src.w;
|
|
|
|
src.w = uint16_t((value << 1) | (status.extend_flag_ ? 0x0001 : 0x0000));
|
2022-04-28 20:55:47 +00:00
|
|
|
status.extend_flag_ = value & 0x8000;
|
|
|
|
set_flags_w(0x8000);
|
|
|
|
} break;
|
2022-04-29 18:43:30 +00:00
|
|
|
// case Operation::ROXLb: roxl(dest.b, 8); break;
|
|
|
|
// case Operation::ROXLw: roxl(dest.w, 16); break;
|
|
|
|
// case Operation::ROXLl: roxl(dest.l, 32); break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
#define roxr(destination, size) { \
|
|
|
|
decode_shift_count(); \
|
|
|
|
\
|
|
|
|
shift_count %= (size + 1); \
|
|
|
|
uint64_t compound = uint64_t(destination) | (status.extend_flag_ ? (1ull << size) : 0); \
|
|
|
|
compound = \
|
|
|
|
(compound >> shift_count) | \
|
|
|
|
(compound << (size + 1 - shift_count)); \
|
|
|
|
status.carry_flag_ = status.extend_flag_ = decltype(status.carry_flag_)((compound >> size) & 1); \
|
|
|
|
destination = decltype(destination)(compound); \
|
|
|
|
\
|
|
|
|
set_neg_zero_overflow(destination, 1 << (size - 1)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
case Operation::ROXRm: {
|
2022-05-04 23:44:59 +00:00
|
|
|
const auto value = src.w;
|
|
|
|
src.w = (value >> 1) | (status.extend_flag_ ? 0x8000 : 0x0000);
|
2022-04-28 20:55:47 +00:00
|
|
|
status.extend_flag_ = value & 0x0001;
|
|
|
|
set_flags_w(0x0001);
|
|
|
|
} break;
|
2022-04-29 18:43:30 +00:00
|
|
|
// case Operation::ROXRb: roxr(dest.b, 8); break;
|
|
|
|
// case Operation::ROXRw: roxr(dest.w, 16); break;
|
|
|
|
// case Operation::ROXRl: roxr(dest.l, 32); break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
#undef roxr
|
|
|
|
#undef roxl
|
|
|
|
#undef ror
|
|
|
|
#undef rol
|
|
|
|
#undef asr
|
|
|
|
#undef lsr
|
|
|
|
#undef lsl
|
|
|
|
#undef asl
|
|
|
|
|
|
|
|
#undef set_flags
|
|
|
|
#undef decode_shift_count
|
2022-05-04 23:44:59 +00:00
|
|
|
//#undef set_flags_b
|
2022-04-28 20:55:47 +00:00
|
|
|
#undef set_flags_w
|
2022-05-04 23:44:59 +00:00
|
|
|
//#undef set_flags_l
|
2022-04-28 20:55:47 +00:00
|
|
|
#undef set_neg_zero_overflow
|
2022-05-02 11:45:07 +00:00
|
|
|
#undef set_neg_zero
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
RTE and RTR share an implementation.
|
|
|
|
*/
|
|
|
|
// case Operation::RTE_RTR:
|
|
|
|
// // If this is RTR, patch out the supervisor half of the status register.
|
2022-04-29 08:51:02 +00:00
|
|
|
// if(decoded_instruction_.l == 0x4e77) {
|
2022-04-28 20:55:47 +00:00
|
|
|
// const auto current_status = status();
|
|
|
|
// source_bus_data_.halves.low.halves.high =
|
|
|
|
// uint8_t(current_status >> 8);
|
|
|
|
// }
|
2022-04-29 08:51:02 +00:00
|
|
|
// apply_status(source_bus_data_.l);
|
2022-04-29 21:12:06 +00:00
|
|
|
// break;
|
|
|
|
|
|
|
|
// case Operation::RTE:
|
|
|
|
// break;
|
|
|
|
//
|
|
|
|
// case Operation::RTR:
|
2022-04-28 20:55:47 +00:00
|
|
|
// break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
TSTs: compare to zero.
|
|
|
|
*/
|
|
|
|
|
|
|
|
case Operation::TSTb:
|
|
|
|
status.carry_flag_ = status.overflow_flag_ = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = src.b;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x80;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::TSTw:
|
|
|
|
status.carry_flag_ = status.overflow_flag_ = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = src.w;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x8000;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operation::TSTl:
|
|
|
|
status.carry_flag_ = status.overflow_flag_ = 0;
|
2022-04-29 08:51:02 +00:00
|
|
|
status.zero_result_ = src.l;
|
2022-04-28 20:55:47 +00:00
|
|
|
status.negative_flag_ = status.zero_result_ & 0x80000000;
|
|
|
|
break;
|
|
|
|
|
2022-04-29 18:43:30 +00:00
|
|
|
case Operation::STOP:
|
|
|
|
status.set_status(src.w);
|
|
|
|
flow_controller.stop();
|
|
|
|
break;
|
2022-04-28 20:55:47 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Development period debugging.
|
|
|
|
*/
|
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#undef sub_overflow
|
|
|
|
#undef add_overflow
|
|
|
|
|
|
|
|
#undef u_extend16
|
|
|
|
#undef u_extend8
|
|
|
|
#undef s_extend16
|
|
|
|
#undef s_extend8
|
|
|
|
#undef convert_to_bit_count_16
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* InstructionSets_M68k_PerformImplementation_h */
|