1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Implement JSR.

This commit is contained in:
Thomas Harte 2022-05-21 10:29:36 -04:00
parent 0e4cfde657
commit e46a3c4046
2 changed files with 107 additions and 10 deletions

View File

@ -156,7 +156,7 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler {
// To limit tests run to a subset of files and/or of tests, uncomment and fill in below.
_fileSet = [NSSet setWithArray:@[
@"movem.json",
@"chk.json",
// Below this line are passing tests.
@"abcd_sbcd.json",
@ -171,12 +171,14 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler {
@"eor_and_or.json",
@"eori_andi_ori.json",
@"ext.json",
@"jsr.json",
@"movem.json",
@"movep.json",
@"nbcd.json",
@"ext.json",
@"swap.json",
]]; // 16/32 = 50 % done, as far as the tests go.
// _testSet = [NSSet setWithArray:@[@"MOVEM 00fa (13)"]];
]]; // 18/32 = 56 % done, as far as the tests go.
// _testSet = [NSSet setWithArray:@[@"MOVEM 0067 (5)"]];
}
- (void)testAll {
@ -287,7 +289,7 @@ struct TestProcessor: public CPU::MC68000Mk2::BusHandler {
NSNumber *const value = [enumerator nextObject];
if(!address || !value) break;
// XCTAssertEqual(test68000->ram[address.integerValue ^ 1], value.integerValue, @"%@: Memory at location %@ inconsistent", name, address);
XCTAssertEqual(test68000->ram[address.integerValue ^ 1], value.integerValue, @"%@: Memory at location %@ inconsistent", name, address);
if(test68000->ram[address.integerValue ^ 1] != value.integerValue) [_failures addObject:name];
}

View File

@ -134,6 +134,15 @@ enum ExecutionState: int {
BSR,
JSRAddressRegisterIndirect,
JSRAddressRegisterIndirectWithDisplacement,
JSRAddressRegisterIndirectWithIndex8bitDisplacement,
JSRProgramCounterIndirectWithDisplacement,
JSRProgramCounterIndirectWithIndex8bitDisplacement,
JSRAbsoluteShort,
JSRAbsoluteLong,
JSR_push,
BCHG_BSET_Dn,
BCLR_Dn,
@ -587,6 +596,27 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
StdCASE(BSRb, perform_state_ = BSR);
StdCASE(BSRw, perform_state_ = BSR);
StdCASE(JSR, {
switch(instruction_.mode(0)) {
case Mode::AddressRegisterIndirect:
MoveToState(JSRAddressRegisterIndirect);
case Mode::AddressRegisterIndirectWithDisplacement:
MoveToState(JSRAddressRegisterIndirectWithDisplacement);
case Mode::AddressRegisterIndirectWithIndex8bitDisplacement:
MoveToState(JSRAddressRegisterIndirectWithIndex8bitDisplacement);
case Mode::ProgramCounterIndirectWithDisplacement:
MoveToState(JSRProgramCounterIndirectWithDisplacement);
case Mode::ProgramCounterIndirectWithIndex8bitDisplacement:
MoveToState(JSRProgramCounterIndirectWithIndex8bitDisplacement);
case Mode::AbsoluteShort:
MoveToState(JSRAbsoluteShort);
case Mode::AbsoluteLong:
MoveToState(JSRAbsoluteLong);
default: assert(false);
}
});
StdCASE(BTST, {
switch(instruction_.mode(1)) {
default:
@ -651,6 +681,10 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
StdCASE(MOVEMtoMl, perform_state_ = MOVEMtoM);
StdCASE(MOVEMtoMw, perform_state_ = MOVEMtoM);
StdCASE(TSTb, perform_state_ = Perform_np);
StdCASE(TSTw, perform_state_ = Perform_np);
StdCASE(TSTl, perform_state_ = Perform_np);
default:
assert(false);
}
@ -818,6 +852,10 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
state_ = post_ea_state_;
break;
BeginState(JSRAddressRegisterIndirect):
effective_address_[0] = registers_[8 + instruction_.reg(next_operand_)].l;
MoveToState(JSR_push);
//
// AddressRegisterIndirectWithPostincrement
//
@ -911,6 +949,13 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
state_ = post_ea_state_;
break;
BeginState(JSRAddressRegisterIndirectWithDisplacement):
effective_address_[0] =
registers_[8 + instruction_.reg(next_operand_)].l +
int16_t(prefetch_.w);
IdleBus(1); // n
MoveToState(JSR_push);
//
// ProgramCounterIndirectWithDisplacement
//
@ -945,6 +990,13 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
state_ = post_ea_state_;
break;
BeginState(JSRProgramCounterIndirectWithDisplacement):
effective_address_[0] =
program_counter_.l - 2 +
int16_t(prefetch_.w);
IdleBus(1); // n
MoveToState(JSR_push);
//
// AddressRegisterIndirectWithIndex8bitDisplacement
//
@ -981,6 +1033,11 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
state_ = post_ea_state_;
break;
BeginState(JSRAddressRegisterIndirectWithIndex8bitDisplacement):
effective_address_[0] = d8Xn(registers_[8 + instruction_.reg(next_operand_)].l);
IdleBus(3); // n nn
MoveToState(JSR_push);
//
// ProgramCounterIndirectWithIndex8bitDisplacement
//
@ -1010,6 +1067,11 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
state_ = post_ea_state_;
break;
BeginState(JSRProgramCounterIndirectWithIndex8bitDisplacement):
effective_address_[0] = d8Xn(program_counter_.l - 2);
IdleBus(3); // n nn
MoveToState(JSR_push);
#undef d8Xn
//
@ -1039,6 +1101,11 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
state_ = post_ea_state_;
break;
BeginState(JSRAbsoluteShort):
effective_address_[0] = int16_t(prefetch_.w);
IdleBus(1); // n
MoveToState(JSR_push);
//
// AbsoluteLong
//
@ -1071,6 +1138,11 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
state_ = post_ea_state_;
break;
BeginState(JSRAbsoluteLong):
Prefetch(); // np
effective_address_[0] = prefetch_.l;
MoveToState(JSR_push);
//
// ImmediateData
//
@ -1390,17 +1462,16 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
BeginState(BSR):
IdleBus(1); // n
SetupDataAccess(0, Microcycle::SelectWord);
SetDataAddress(registers_[15].l);
// Push the next PC to the stack; determine here what
// the next one should be.
// Calculate the address of the next instruction.
if(instruction_.operand_size() == InstructionSet::M68k::DataSize::Word) {
temporary_address_.l = instruction_address_.l + 4;
} else {
temporary_address_.l = instruction_address_.l + 2;
}
// Push it to the stack.
SetupDataAccess(0, Microcycle::SelectWord);
SetDataAddress(registers_[15].l);
registers_[15].l -= 4;
Access(temporary_address_.high); // nS
registers_[15].l += 2;
@ -1415,6 +1486,30 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
Prefetch(); // np
MoveToState(Decode);
//
// JSR [push only; address calculation elsewhere]
//
BeginState(JSR_push):
// Grab the address of the next instruction.
temporary_address_.l = program_counter_.l - 4;
// Update the program counter and prefetch once.
program_counter_.l = effective_address_[0];
Prefetch(); // np
// Push the old PC onto the stack in upper, lower order.
SetupDataAccess(0, Microcycle::SelectWord);
SetDataAddress(registers_[15].l);
registers_[15].l -= 4;
Access(temporary_address_.high); // nS
registers_[15].l += 2;
Access(temporary_address_.low); // ns
registers_[15].l -= 2;
// Prefetch once more.
Prefetch();
MoveToState(Decode);
//
// BSET, BCHG, BCLR
//