This repository has been archived on 2024-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
sysforge/src/main.rs
2024-11-24 18:47:56 +01:00

12 lines
299 B
Rust

// SPDX-License-Identifier: LGPL-3.0-or-later
// Copyright (c) 2024 Patrick_Pluto
mod devices;
fn main() {
let mut instance: devices::ExampleCPU = devices::ExampleCPU::create_instance(true, [0; 256]);
// change the instructions here
loop {
instance.fetch_and_decode();
}
}