chore: call proper fn
This commit is contained in:
parent
675084e77c
commit
0c85409369
|
@ -33,7 +33,7 @@ pub const Emulator = struct {
|
|||
pub fn writeImpl(pointer: *anyopaque, addr: u32, value: u8) void {
|
||||
const self = @ptrCast(Ptr, @alignCast(alignment, pointer));
|
||||
|
||||
return @call(.{ .modifier = .always_inline }, ptr_info.Pointer.child.read, .{ self, addr, value });
|
||||
return @call(.{ .modifier = .always_inline }, ptr_info.Pointer.child.write, .{ self, addr, value });
|
||||
}
|
||||
|
||||
pub fn registersImpl(pointer: *anyopaque) [16]u32 {
|
||||
|
|
Loading…
Reference in New Issue