680 lines
20 KiB
Zig
680 lines
20 KiB
Zig
const std = @import("std");
|
|
const timer = @import("timer.zig");
|
|
const dma = @import("dma.zig");
|
|
const apu = @import("../apu.zig");
|
|
const ppu = @import("../ppu.zig");
|
|
const util = @import("../../util.zig");
|
|
|
|
const Bit = @import("bitfield").Bit;
|
|
const Bitfield = @import("bitfield").Bitfield;
|
|
const Bus = @import("../Bus.zig");
|
|
|
|
const getHalf = util.getHalf;
|
|
const setHalf = util.setHalf;
|
|
|
|
const log = std.log.scoped(.@"I/O");
|
|
|
|
pub const Io = struct {
|
|
const Self = @This();
|
|
|
|
/// Read / Write
|
|
ime: bool,
|
|
ie: InterruptEnable,
|
|
irq: InterruptRequest,
|
|
postflg: PostFlag,
|
|
waitcnt: WaitControl,
|
|
haltcnt: HaltControl,
|
|
keyinput: AtomicKeyInput,
|
|
|
|
pub fn init() Self {
|
|
return .{
|
|
.ime = false,
|
|
.ie = .{ .raw = 0x0000 },
|
|
.irq = .{ .raw = 0x0000 },
|
|
.keyinput = AtomicKeyInput.init(.{ .raw = 0x03FF }),
|
|
.waitcnt = .{ .raw = 0x0000_0000 }, // Bit 15 == 0 for GBA
|
|
.postflg = .FirstBoot,
|
|
.haltcnt = .Execute,
|
|
};
|
|
}
|
|
|
|
pub fn reset(self: *Self) void {
|
|
self.* = Self.init();
|
|
}
|
|
|
|
fn setIrqs(self: *Io, word: u32) void {
|
|
self.ie.raw = @truncate(u16, word);
|
|
self.irq.raw &= ~@truncate(u16, word >> 16);
|
|
}
|
|
};
|
|
|
|
pub fn read(bus: *const Bus, comptime T: type, address: u32) ?T {
|
|
return switch (T) {
|
|
u32 => switch (address) {
|
|
// Display
|
|
0x0400_0000...0x0400_0054 => ppu.read(T, &bus.ppu, address),
|
|
|
|
// Sound
|
|
0x0400_0060...0x0400_00A4 => apu.read(T, &bus.apu, address),
|
|
|
|
// DMA Transfers
|
|
0x0400_00B0...0x0400_00DC => dma.read(T, &bus.dma, address),
|
|
|
|
// Timers
|
|
0x0400_0100...0x0400_010C => timer.read(T, &bus.tim, address),
|
|
|
|
// Serial Communication 1
|
|
0x0400_0128 => util.io.read.todo(log, "Read {} from SIOCNT and SIOMLT_SEND", .{T}),
|
|
|
|
// Keypad Input
|
|
0x0400_0130 => util.io.read.todo(log, "Read {} from KEYINPUT", .{T}),
|
|
|
|
// Serial Communication 2
|
|
0x0400_0150 => util.io.read.todo(log, "Read {} from JOY_RECV", .{T}),
|
|
|
|
// Interrupts
|
|
0x0400_0200 => @as(u32, bus.io.irq.raw) << 16 | bus.io.ie.raw,
|
|
0x0400_0204 => bus.io.waitcnt.raw,
|
|
0x0400_0208 => @boolToInt(bus.io.ime),
|
|
0x0400_0300 => @enumToInt(bus.io.postflg),
|
|
else => util.io.read.undef(T, log, "Tried to perform a {} read to 0x{X:0>8}", .{ T, address }),
|
|
},
|
|
u16 => switch (address) {
|
|
// Display
|
|
0x0400_0000...0x0400_0054 => ppu.read(T, &bus.ppu, address),
|
|
|
|
// Sound
|
|
0x0400_0060...0x0400_00A6 => apu.read(T, &bus.apu, address),
|
|
|
|
// DMA Transfers
|
|
0x0400_00B0...0x0400_00DE => dma.read(T, &bus.dma, address),
|
|
|
|
// Timers
|
|
0x0400_0100...0x0400_010E => timer.read(T, &bus.tim, address),
|
|
|
|
// Serial Communication 1
|
|
0x0400_0128 => util.io.read.todo(log, "Read {} from SIOCNT", .{T}),
|
|
|
|
// Keypad Input
|
|
0x0400_0130 => bus.io.keyinput.load(.Monotonic).raw,
|
|
|
|
// Serial Communication 2
|
|
0x0400_0134 => util.io.read.todo(log, "Read {} from RCNT", .{T}),
|
|
0x0400_0136 => 0x0000,
|
|
0x0400_0142 => 0x0000,
|
|
0x0400_015A => 0x0000,
|
|
|
|
// Interrupts
|
|
0x0400_0200 => bus.io.ie.raw,
|
|
0x0400_0202 => bus.io.irq.raw,
|
|
0x0400_0204 => bus.io.waitcnt.raw,
|
|
0x0400_0206 => 0x0000,
|
|
0x0400_0208 => @boolToInt(bus.io.ime),
|
|
0x0400_020A => 0x0000,
|
|
0x0400_0300 => @enumToInt(bus.io.postflg),
|
|
0x0400_0302 => 0x0000,
|
|
else => util.io.read.undef(T, log, "Tried to perform a {} read to 0x{X:0>8}", .{ T, address }),
|
|
},
|
|
u8 => return switch (address) {
|
|
// Display
|
|
0x0400_0000...0x0400_0055 => ppu.read(T, &bus.ppu, address),
|
|
|
|
// Sound
|
|
0x0400_0060...0x0400_00A7 => apu.read(T, &bus.apu, address),
|
|
|
|
// DMA Transfers
|
|
0x0400_00B0...0x0400_00DF => dma.read(T, &bus.dma, address),
|
|
|
|
// Timers
|
|
0x0400_0100...0x0400_010F => timer.read(T, &bus.tim, address),
|
|
|
|
// Serial Communication 1
|
|
0x0400_0128 => util.io.read.todo(log, "Read {} from SIOCNT_L", .{T}),
|
|
|
|
// Keypad Input
|
|
0x0400_0130 => util.io.read.todo(log, "read {} from KEYINPUT_L", .{T}),
|
|
|
|
// Serial Communication 2
|
|
0x0400_0135 => util.io.read.todo(log, "Read {} from RCNT_H", .{T}),
|
|
0x0400_0136, 0x0400_0137 => 0x00,
|
|
0x0400_0142, 0x0400_0143 => 0x00,
|
|
0x0400_015A, 0x0400_015B => 0x00,
|
|
|
|
// Interrupts
|
|
0x0400_0200, 0x0400_0201 => @truncate(T, bus.io.ie.raw >> getHalf(@truncate(u8, address))),
|
|
0x0400_0202, 0x0400_0203 => @truncate(T, bus.io.irq.raw >> getHalf(@truncate(u8, address))),
|
|
0x0400_0204, 0x0400_0205 => @truncate(T, bus.io.waitcnt.raw >> getHalf(@truncate(u8, address))),
|
|
0x0400_0206, 0x0400_0207 => 0x00,
|
|
0x0400_0208, 0x0400_0209 => @truncate(T, @as(u16, @boolToInt(bus.io.ime)) >> getHalf(@truncate(u8, address))),
|
|
0x0400_020A, 0x0400_020B => 0x00,
|
|
0x0400_0300 => @enumToInt(bus.io.postflg),
|
|
0x0400_0301 => null,
|
|
0x0400_0302, 0x0400_0303 => 0x00,
|
|
else => util.io.read.undef(T, log, "Tried to perform a {} read to 0x{X:0>8}", .{ T, address }),
|
|
},
|
|
else => @compileError("I/O: Unsupported read width"),
|
|
};
|
|
}
|
|
|
|
pub fn write(bus: *Bus, comptime T: type, address: u32, value: T) void {
|
|
return switch (T) {
|
|
u32 => switch (address) {
|
|
// Display
|
|
0x0400_0000...0x0400_0054 => ppu.write(T, &bus.ppu, address, value),
|
|
0x0400_0058...0x0400_005C => {}, // Unused
|
|
|
|
// Sound
|
|
0x0400_0060...0x0400_00A4 => apu.write(T, &bus.apu, address, value),
|
|
0x0400_00A8, 0x0400_00AC => {}, // Unused
|
|
|
|
// DMA Transfers
|
|
0x0400_00B0...0x0400_00DC => dma.write(T, &bus.dma, address, value),
|
|
0x0400_00E0...0x0400_00FC => {}, // Unused
|
|
|
|
// Timers
|
|
0x0400_0100...0x0400_010C => timer.write(T, &bus.tim, address, value),
|
|
0x0400_0110...0x0400_011C => {}, // Unused
|
|
|
|
// Serial Communication 1
|
|
0x0400_0120 => log.debug("Wrote 0x{X:0>8} to SIODATA32/(SIOMULTI0 and SIOMULTI1)", .{value}),
|
|
0x0400_0124 => log.debug("Wrote 0x{X:0>8} to SIOMULTI2 and SIOMULTI3", .{value}),
|
|
0x0400_0128 => log.debug("Wrote 0x{X:0>8} to SIOCNT and SIOMLT_SEND/SIODATA8", .{value}),
|
|
0x0400_012C => {}, // Unused
|
|
|
|
// Keypad Input
|
|
0x0400_0130 => log.debug("Wrote 0x{X:0>8} to KEYINPUT and KEYCNT", .{value}),
|
|
0x0400_0134 => log.debug("Wrote 0x{X:0>8} to RCNT and IR", .{value}),
|
|
0x0400_0138, 0x0400_013C => {}, // Unused
|
|
|
|
// Serial Communication 2
|
|
0x0400_0140 => log.debug("Wrote 0x{X:0>8} to JOYCNT", .{value}),
|
|
0x0400_0150 => log.debug("Wrote 0x{X:0>8} to JOY_RECV", .{value}),
|
|
0x0400_0154 => log.debug("Wrote 0x{X:0>8} to JOY_TRANS", .{value}),
|
|
0x0400_0158 => log.debug("Wrote 0x{X:0>8} to JOYSTAT (?)", .{value}),
|
|
0x0400_0144...0x0400_014C, 0x0400_015C => {}, // Unused
|
|
0x0400_0160...0x0400_01FC => {},
|
|
|
|
// Interrupts
|
|
0x0400_0200 => bus.io.setIrqs(value),
|
|
0x0400_0204 => bus.io.waitcnt.set(@truncate(u16, value)),
|
|
0x0400_0208 => bus.io.ime = value & 1 == 1,
|
|
0x0400_0300 => {
|
|
bus.io.postflg = @intToEnum(PostFlag, value & 1);
|
|
bus.io.haltcnt = if (value >> 15 & 1 == 0) .Halt else @panic("TODO: Implement STOP");
|
|
},
|
|
else => util.io.write.undef(log, "Tried to write 0x{X:0>8}{} to 0x{X:0>8}", .{ value, T, address }),
|
|
},
|
|
u16 => switch (address) {
|
|
// Display
|
|
0x0400_0000...0x0400_0054 => ppu.write(T, &bus.ppu, address, value),
|
|
0x0400_0056 => {}, // Not used
|
|
|
|
// Sound
|
|
0x0400_0060...0x0400_00A6 => apu.write(T, &bus.apu, address, value),
|
|
|
|
// Dma Transfers
|
|
0x0400_00B0...0x0400_00DE => dma.write(T, &bus.dma, address, value),
|
|
|
|
// Timers
|
|
0x0400_0100...0x0400_010E => timer.write(T, &bus.tim, address, value),
|
|
0x0400_0114 => {},
|
|
0x0400_0110 => {}, // Not Used,
|
|
|
|
// Serial Communication 1
|
|
0x0400_0120 => log.debug("Wrote 0x{X:0>4} to SIOMULTI0", .{value}),
|
|
0x0400_0122 => log.debug("Wrote 0x{X:0>4} to SIOMULTI1", .{value}),
|
|
0x0400_0124 => log.debug("Wrote 0x{X:0>4} to SIOMULTI2", .{value}),
|
|
0x0400_0126 => log.debug("Wrote 0x{X:0>4} to SIOMULTI3", .{value}),
|
|
0x0400_0128 => log.debug("Wrote 0x{X:0>4} to SIOCNT", .{value}),
|
|
0x0400_012A => log.debug("Wrote 0x{X:0>4} to SIOMLT_SEND", .{value}),
|
|
|
|
// Keypad Input
|
|
0x0400_0130 => log.debug("Wrote 0x{X:0>4} to KEYINPUT. Ignored", .{value}),
|
|
0x0400_0132 => log.debug("Wrote 0x{X:0>4} to KEYCNT", .{value}),
|
|
|
|
// Serial Communication 2
|
|
0x0400_0134 => log.debug("Wrote 0x{X:0>4} to RCNT", .{value}),
|
|
0x0400_0140 => log.debug("Wrote 0x{X:0>4} to JOYCNT", .{value}),
|
|
0x0400_0158 => log.debug("Wrote 0x{X:0>4} to JOYSTAT", .{value}),
|
|
0x0400_0142, 0x0400_015A => {}, // Not Used
|
|
|
|
// Interrupts
|
|
0x0400_0200 => bus.io.ie.raw = value,
|
|
0x0400_0202 => bus.io.irq.raw &= ~value,
|
|
0x0400_0204 => bus.io.waitcnt.set(value),
|
|
0x0400_0206 => {},
|
|
0x0400_0208 => bus.io.ime = value & 1 == 1,
|
|
0x0400_020A => {},
|
|
0x0400_0300 => {
|
|
bus.io.postflg = @intToEnum(PostFlag, value & 1);
|
|
bus.io.haltcnt = if (value >> 15 & 1 == 0) .Halt else @panic("TODO: Implement STOP");
|
|
},
|
|
else => util.io.write.undef(log, "Tried to write 0x{X:0>4}{} to 0x{X:0>8}", .{ value, T, address }),
|
|
},
|
|
u8 => switch (address) {
|
|
// Display
|
|
0x0400_0000...0x0400_0055 => ppu.write(T, &bus.ppu, address, value),
|
|
|
|
// Sound
|
|
0x0400_0060...0x0400_00A7 => apu.write(T, &bus.apu, address, value),
|
|
|
|
// Dma Transfers
|
|
0x0400_00B0...0x0400_00DF => dma.write(T, &bus.dma, address, value),
|
|
|
|
// Timers
|
|
0x0400_0100...0x0400_010F => timer.write(T, &bus.tim, address, value),
|
|
|
|
// Serial Communication 1
|
|
0x0400_0120 => log.debug("Wrote 0x{X:0>2} to SIODATA32_L_L", .{value}),
|
|
0x0400_0128 => log.debug("Wrote 0x{X:0>2} to SIOCNT_L", .{value}),
|
|
|
|
// Serial Communication 2
|
|
0x0400_0135 => log.debug("Wrote 0x{X:0>2} to RCNT_H", .{value}),
|
|
0x0400_0140 => log.debug("Wrote 0x{X:0>2} to JOYCNT_L", .{value}),
|
|
|
|
// Interrupts
|
|
0x0400_0200, 0x0400_0201 => bus.io.ie.raw = setHalf(u16, bus.io.ie.raw, @truncate(u8, address), value),
|
|
0x0400_0202 => bus.io.irq.raw &= ~@as(u16, value),
|
|
0x0400_0203 => bus.io.irq.raw &= ~@as(u16, value) << 8, // TODO: Is this good?
|
|
0x0400_0204, 0x0400_0205 => bus.io.waitcnt.set(setHalf(u16, @truncate(u16, bus.io.waitcnt.raw), @truncate(u8, address), value)),
|
|
0x0400_0206, 0x0400_0207 => {},
|
|
0x0400_0208 => bus.io.ime = value & 1 == 1,
|
|
0x0400_0209 => {},
|
|
0x0400_020A, 0x0400_020B => {},
|
|
|
|
0x0400_0300 => bus.io.postflg = @intToEnum(PostFlag, value & 1),
|
|
0x0400_0301 => bus.io.haltcnt = if (value >> 7 & 1 == 0) .Halt else std.debug.panic("TODO: Implement STOP", .{}),
|
|
|
|
0x0400_0410 => log.debug("Wrote 0x{X:0>2} to the common yet undocumented 0x{X:0>8}", .{ value, address }),
|
|
else => util.io.write.undef(log, "Tried to write 0x{X:0>2}{} to 0x{X:0>8}", .{ value, T, address }),
|
|
},
|
|
else => @compileError("I/O: Unsupported write width"),
|
|
};
|
|
}
|
|
|
|
/// Read / Write
|
|
pub const PostFlag = enum(u1) {
|
|
FirstBoot = 0,
|
|
FurtherBoots = 1,
|
|
};
|
|
|
|
/// Write Only
|
|
pub const HaltControl = enum {
|
|
Halt,
|
|
Stop,
|
|
Execute,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const DisplayControl = extern union {
|
|
bg_mode: Bitfield(u16, 0, 3),
|
|
frame_select: Bit(u16, 4),
|
|
hblank_interval_free: Bit(u16, 5),
|
|
obj_mapping: Bit(u16, 6),
|
|
forced_blank: Bit(u16, 7),
|
|
bg_enable: Bitfield(u16, 8, 4),
|
|
obj_enable: Bit(u16, 12),
|
|
win_enable: Bitfield(u16, 13, 2),
|
|
obj_win_enable: Bit(u16, 15),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const DisplayStatus = extern union {
|
|
/// read-only
|
|
vblank: Bit(u16, 0),
|
|
/// read-only
|
|
hblank: Bit(u16, 1),
|
|
// read-only
|
|
coincidence: Bit(u16, 2),
|
|
vblank_irq: Bit(u16, 3),
|
|
hblank_irq: Bit(u16, 4),
|
|
vcount_irq: Bit(u16, 5),
|
|
vcount_trigger: Bitfield(u16, 8, 8),
|
|
raw: u16,
|
|
|
|
pub fn set(self: *DisplayStatus, value: u16) void {
|
|
const mask: u16 = 0x00C7; // set bits are read-only
|
|
self.raw = (self.raw & mask) | (value & ~mask);
|
|
}
|
|
};
|
|
|
|
/// Read Only
|
|
pub const VCount = extern union {
|
|
scanline: Bitfield(u16, 0, 8),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
const InterruptEnable = extern union {
|
|
vblank: Bit(u16, 0),
|
|
hblank: Bit(u16, 1),
|
|
coincidence: Bit(u16, 2),
|
|
tim0: Bit(u16, 3),
|
|
tim1: Bit(u16, 4),
|
|
tim2: Bit(u16, 5),
|
|
tim3: Bit(u16, 6),
|
|
serial: Bit(u16, 7),
|
|
dma0: Bit(u16, 8),
|
|
dma1: Bit(u16, 9),
|
|
dma2: Bit(u16, 10),
|
|
dma3: Bit(u16, 11),
|
|
keypad: Bit(u16, 12),
|
|
game_pak: Bit(u16, 13),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read Only
|
|
/// 0 = Pressed, 1 = Released
|
|
const KeyInput = extern union {
|
|
a: Bit(u16, 0),
|
|
b: Bit(u16, 1),
|
|
select: Bit(u16, 2),
|
|
start: Bit(u16, 3),
|
|
right: Bit(u16, 4),
|
|
left: Bit(u16, 5),
|
|
up: Bit(u16, 6),
|
|
down: Bit(u16, 7),
|
|
shoulder_r: Bit(u16, 8),
|
|
shoulder_l: Bit(u16, 9),
|
|
raw: u16,
|
|
};
|
|
|
|
const AtomicKeyInput = struct {
|
|
const Self = @This();
|
|
const Ordering = std.atomic.Ordering;
|
|
|
|
inner: KeyInput,
|
|
|
|
pub fn init(value: KeyInput) Self {
|
|
return .{ .inner = value };
|
|
}
|
|
|
|
pub inline fn load(self: *const Self, comptime ordering: Ordering) KeyInput {
|
|
return .{ .raw = switch (ordering) {
|
|
.AcqRel, .Release => @compileError("not supported for atomic loads"),
|
|
else => @atomicLoad(u16, &self.inner.raw, ordering),
|
|
} };
|
|
}
|
|
|
|
pub inline fn store(self: *Self, value: u16, comptime ordering: Ordering) void {
|
|
switch (ordering) {
|
|
.AcqRel, .Acquire => @compileError("not supported for atomic stores"),
|
|
else => @atomicStore(u16, &self.inner.raw, value, ordering),
|
|
}
|
|
}
|
|
};
|
|
|
|
// Read / Write
|
|
pub const BackgroundControl = extern union {
|
|
priority: Bitfield(u16, 0, 2),
|
|
char_base: Bitfield(u16, 2, 2),
|
|
mosaic_enable: Bit(u16, 6),
|
|
colour_mode: Bit(u16, 7),
|
|
screen_base: Bitfield(u16, 8, 5),
|
|
display_overflow: Bit(u16, 13),
|
|
size: Bitfield(u16, 14, 2),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Write Only
|
|
pub const BackgroundOffset = extern union {
|
|
offset: Bitfield(u16, 0, 9),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const BldCnt = extern union {
|
|
/// BLDCNT{0} is BG0 A
|
|
/// BLDCNT{4} is OBJ A
|
|
/// BLDCNT{5} is BD A
|
|
layer_a: Bitfield(u16, 0, 6),
|
|
mode: Bitfield(u16, 6, 2),
|
|
|
|
/// BLDCNT{8} is BG0 B
|
|
/// BLDCNT{12} is OBJ B
|
|
/// BLDCNT{13} is BD B
|
|
layer_b: Bitfield(u16, 8, 6),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read-only?
|
|
/// Alpha Blending Coefficients
|
|
pub const BldAlpha = extern union {
|
|
eva: Bitfield(u16, 0, 5),
|
|
evb: Bitfield(u16, 8, 5),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Write-only?
|
|
/// Brightness COefficients
|
|
pub const BldY = extern union {
|
|
evy: Bitfield(u16, 0, 5),
|
|
raw: u16,
|
|
};
|
|
|
|
const u8WriteKind = enum { Hi, Lo };
|
|
|
|
/// Write-only
|
|
pub const WinH = extern union {
|
|
x2: Bitfield(u16, 0, 8),
|
|
x1: Bitfield(u16, 8, 8),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Write-only
|
|
pub const WinV = extern union {
|
|
const Self = @This();
|
|
|
|
y2: Bitfield(u16, 0, 8),
|
|
y1: Bitfield(u16, 8, 8),
|
|
raw: u16,
|
|
};
|
|
|
|
pub const WinIn = extern union {
|
|
w0_bg: Bitfield(u16, 0, 4),
|
|
w0_obj: Bit(u16, 4),
|
|
w0_bld: Bit(u16, 5),
|
|
w1_bg: Bitfield(u16, 8, 4),
|
|
w1_obj: Bit(u16, 12),
|
|
w1_bld: Bit(u16, 13),
|
|
raw: u16,
|
|
};
|
|
|
|
pub const WinOut = extern union {
|
|
out_bg: Bitfield(u16, 0, 4),
|
|
out_obj: Bit(u16, 4),
|
|
out_bld: Bit(u16, 5),
|
|
obj_bg: Bitfield(u16, 8, 4),
|
|
obj_obj: Bit(u16, 12),
|
|
obj_bld: Bit(u16, 13),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
const InterruptRequest = extern union {
|
|
vblank: Bit(u16, 0),
|
|
hblank: Bit(u16, 1),
|
|
coincidence: Bit(u16, 2),
|
|
tim0: Bit(u16, 3),
|
|
tim1: Bit(u16, 4),
|
|
tim2: Bit(u16, 5),
|
|
tim3: Bit(u16, 6),
|
|
serial: Bit(u16, 7),
|
|
dma0: Bit(u16, 8),
|
|
dma1: Bit(u16, 9),
|
|
dma2: Bit(u16, 10),
|
|
dma3: Bit(u16, 11),
|
|
keypad: Bit(u16, 12),
|
|
game_pak: Bit(u16, 13),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const DmaControl = extern union {
|
|
dad_adj: Bitfield(u16, 5, 2),
|
|
sad_adj: Bitfield(u16, 7, 2),
|
|
repeat: Bit(u16, 9),
|
|
transfer_type: Bit(u16, 10),
|
|
pak_drq: Bit(u16, 11),
|
|
start_timing: Bitfield(u16, 12, 2),
|
|
irq: Bit(u16, 14),
|
|
enabled: Bit(u16, 15),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const TimerControl = extern union {
|
|
frequency: Bitfield(u16, 0, 2),
|
|
cascade: Bit(u16, 2),
|
|
irq: Bit(u16, 6),
|
|
enabled: Bit(u16, 7),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
/// NR10
|
|
pub const Sweep = extern union {
|
|
shift: Bitfield(u8, 0, 3),
|
|
direction: Bit(u8, 3),
|
|
period: Bitfield(u8, 4, 3),
|
|
raw: u8,
|
|
};
|
|
|
|
/// Read / Write
|
|
/// This represents the Duty / Len
|
|
/// NRx1
|
|
pub const Duty = extern union {
|
|
/// Write-only
|
|
/// Only used when bit 6 is set
|
|
length: Bitfield(u16, 0, 6),
|
|
pattern: Bitfield(u16, 6, 2),
|
|
raw: u8,
|
|
};
|
|
|
|
/// Read / Write
|
|
/// NRx2
|
|
pub const Envelope = extern union {
|
|
period: Bitfield(u8, 0, 3),
|
|
direction: Bit(u8, 3),
|
|
init_vol: Bitfield(u8, 4, 4),
|
|
raw: u8,
|
|
};
|
|
|
|
/// Read / Write
|
|
/// NRx3, NRx4
|
|
pub const Frequency = extern union {
|
|
/// Write-only
|
|
frequency: Bitfield(u16, 0, 11),
|
|
length_enable: Bit(u16, 14),
|
|
/// Write-only
|
|
trigger: Bit(u16, 15),
|
|
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
/// NR30
|
|
pub const WaveSelect = extern union {
|
|
dimension: Bit(u8, 5),
|
|
bank: Bit(u8, 6),
|
|
enabled: Bit(u8, 7),
|
|
raw: u8,
|
|
};
|
|
|
|
/// Read / Write
|
|
/// NR32
|
|
pub const WaveVolume = extern union {
|
|
kind: Bitfield(u8, 5, 2),
|
|
force: Bit(u8, 7),
|
|
raw: u8,
|
|
};
|
|
|
|
/// Read / Write
|
|
/// NR43
|
|
pub const PolyCounter = extern union {
|
|
div_ratio: Bitfield(u8, 0, 3),
|
|
width: Bit(u8, 3),
|
|
shift: Bitfield(u8, 4, 4),
|
|
raw: u8,
|
|
};
|
|
|
|
/// Read / Write
|
|
/// NR44
|
|
pub const NoiseControl = extern union {
|
|
length_enable: Bit(u8, 6),
|
|
trigger: Bit(u8, 7),
|
|
raw: u8,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const ChannelVolumeControl = extern union {
|
|
right_vol: Bitfield(u16, 0, 3),
|
|
left_vol: Bitfield(u16, 4, 3),
|
|
ch_right: Bitfield(u16, 8, 4),
|
|
ch_left: Bitfield(u16, 12, 4),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const DmaSoundControl = extern union {
|
|
ch_vol: Bitfield(u16, 0, 2),
|
|
chA_vol: Bit(u16, 2),
|
|
chB_vol: Bit(u16, 3),
|
|
|
|
chA_right: Bit(u16, 8),
|
|
chA_left: Bit(u16, 9),
|
|
chA_timer: Bit(u16, 10),
|
|
/// Write only?
|
|
chA_reset: Bit(u16, 11),
|
|
|
|
chB_right: Bit(u16, 12),
|
|
chB_left: Bit(u16, 13),
|
|
chB_timer: Bit(u16, 14),
|
|
/// Write only?
|
|
chB_reset: Bit(u16, 15),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const SoundControl = extern union {
|
|
/// Read-only
|
|
ch1_enable: Bit(u8, 0),
|
|
/// Read-only
|
|
ch2_enable: Bit(u8, 1),
|
|
/// Read-only
|
|
ch3_enable: Bit(u8, 2),
|
|
/// Read-only
|
|
ch4_enable: Bit(u8, 3),
|
|
apu_enable: Bit(u8, 7),
|
|
raw: u8,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const SoundBias = extern union {
|
|
level: Bitfield(u16, 1, 9),
|
|
sampling_cycle: Bitfield(u16, 14, 2),
|
|
raw: u16,
|
|
};
|
|
|
|
/// Read / Write
|
|
pub const WaitControl = extern union {
|
|
sram_cnt: Bitfield(u16, 0, 2),
|
|
s0_first: Bitfield(u16, 2, 2),
|
|
s0_second: Bit(u16, 4),
|
|
s1_first: Bitfield(u16, 5, 2),
|
|
s1_second: Bit(u16, 7),
|
|
s2_first: Bitfield(u16, 8, 2),
|
|
s2_second: Bit(u16, 10),
|
|
phi_out: Bitfield(u16, 11, 2),
|
|
|
|
prefetch_enable: Bit(u16, 14),
|
|
pak_kind: Bit(u16, 15),
|
|
raw: u16,
|
|
|
|
pub fn set(self: *WaitControl, value: u16) void {
|
|
const mask: u16 = 0x8000; // set bits are read-only
|
|
self.raw = (self.raw & mask) | (value & ~mask);
|
|
}
|
|
};
|