Compare commits

..

3 Commits

1 changed files with 4 additions and 0 deletions

View File

@ -141,6 +141,10 @@ pub const Bus = struct {
_ = address;
@panic("TODO: Implement Debug Writes via Bus Interface");
}
pub fn reset(self: @This()) void {
self.vtable.reset();
}
};
pub const Scheduler = struct {