67 lines
2.3 KiB
Zig
67 lines
2.3 KiB
Zig
const std = @import("std");
|
|
const util = @import("../../util.zig");
|
|
|
|
const BarrelShifter = @import("barrel_shifter.zig");
|
|
const Bus = @import("../../Bus.zig");
|
|
const Arm7tdmi = @import("../../cpu.zig").Arm7tdmi;
|
|
const InstrFn = @import("../../cpu.zig").ArmInstrFn;
|
|
|
|
pub fn singleDataTransfer(comptime I: bool, comptime P: bool, comptime U: bool, comptime B: bool, comptime W: bool, comptime L: bool) InstrFn {
|
|
return struct {
|
|
fn inner(cpu: *Arm7tdmi, bus: *Bus, opcode: u32) void {
|
|
const rn = opcode >> 16 & 0xF;
|
|
const rd = opcode >> 12 & 0xF;
|
|
|
|
var base: u32 = undefined;
|
|
if (rn == 0xF) {
|
|
base = cpu.fakePC();
|
|
if (!L) base += 4; // Offset of 12
|
|
} else {
|
|
base = cpu.r[rn];
|
|
}
|
|
|
|
const offset = if (I) registerOffset(cpu, opcode) else opcode & 0xFFF;
|
|
|
|
const modified_base = if (U) base + offset else base - offset;
|
|
var address = if (P) modified_base else base;
|
|
|
|
if (L) {
|
|
if (B) {
|
|
// LDRB
|
|
cpu.r[rd] = bus.read8(address);
|
|
} else {
|
|
// LDR
|
|
const value = bus.read32(address & 0xFFFF_FFFC);
|
|
cpu.r[rd] = std.math.rotr(u32, value, 8 * (address & 0x3));
|
|
}
|
|
} else {
|
|
if (B) {
|
|
// STRB
|
|
bus.write8(address, @truncate(u8, cpu.r[rd]));
|
|
} else {
|
|
// STR
|
|
const force_aligned = address & 0xFFFF_FFFC;
|
|
bus.write32(force_aligned, cpu.r[rd]);
|
|
}
|
|
}
|
|
|
|
address = modified_base;
|
|
if (W and P or !P) cpu.r[rn] = address;
|
|
|
|
// TODO: W-bit forces non-privledged mode for the transfer
|
|
}
|
|
}.inner;
|
|
}
|
|
|
|
fn registerOffset(cpu: *Arm7tdmi, opcode: u32) u32 {
|
|
const amount = @truncate(u8, opcode >> 7 & 0x1F);
|
|
const rm = cpu.r[opcode & 0xF];
|
|
|
|
return switch (@truncate(u2, opcode >> 5)) {
|
|
0b00 => BarrelShifter.logicalLeft(false, &cpu.cpsr, rm, amount),
|
|
0b01 => BarrelShifter.logicalRight(false, &cpu.cpsr, rm, amount),
|
|
0b10 => BarrelShifter.arithmeticRight(false, &cpu.cpsr, rm, amount),
|
|
0b11 => BarrelShifter.rotateRight(false, &cpu.cpsr, rm, amount),
|
|
};
|
|
}
|