fix: rename Pipline to Pipeline

This commit is contained in:
Rekai Nyangadzayi Musuka 2022-09-28 16:37:40 -03:00
parent 14ba0dbca9
commit e16c2df8d0
1 changed files with 3 additions and 3 deletions

View File

@ -243,7 +243,7 @@ pub const Arm7tdmi = struct {
const Self = @This(); const Self = @This();
r: [16]u32, r: [16]u32,
pipe: Pipline, pipe: Pipeline,
sched: *Scheduler, sched: *Scheduler,
bus: *Bus, bus: *Bus,
cpsr: PSR, cpsr: PSR,
@ -264,7 +264,7 @@ pub const Arm7tdmi = struct {
pub fn init(sched: *Scheduler, bus: *Bus, log_file: ?std.fs.File) Self { pub fn init(sched: *Scheduler, bus: *Bus, log_file: ?std.fs.File) Self {
return Self{ return Self{
.r = [_]u32{0x00} ** 16, .r = [_]u32{0x00} ** 16,
.pipe = Pipline.init(), .pipe = Pipeline.init(),
.sched = sched, .sched = sched,
.bus = bus, .bus = bus,
.cpsr = .{ .raw = 0x0000_001F }, .cpsr = .{ .raw = 0x0000_001F },
@ -644,7 +644,7 @@ pub fn checkCond(cpsr: PSR, cond: u4) bool {
}; };
} }
const Pipline = struct { const Pipeline = struct {
const Self = @This(); const Self = @This();
stage: [2]?u32, stage: [2]?u32,
flushed: bool, flushed: bool,