diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-03-25 12:46:49 +1300 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-03-25 12:48:49 +1300 |
commit | ab84ad75629b0a4124221023ca91411d2cd62a32 (patch) | |
tree | 0c333f06bec5270084aaec71cf173c798420207b /src/devices.rs | |
parent | 07ae3438917fd854a46924a410f6890cd0651f1b (diff) | |
download | bedrock-pc-ab84ad75629b0a4124221023ca91411d2cd62a32.zip |
Restructure program
This commit also includes changes to devices according to the latest
devices specification, in particular the math and system devices.
Diffstat (limited to 'src/devices.rs')
-rw-r--r-- | src/devices.rs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/devices.rs b/src/devices.rs deleted file mode 100644 index 2221152..0000000 --- a/src/devices.rs +++ /dev/null @@ -1,20 +0,0 @@ -mod system_device; -mod memory_device; -mod math_device; -mod clock_device; -mod input_device; -mod screen_device; -mod local_device; -mod remote_device; -mod file_device; - -pub use system_device::SystemDevice; -pub use memory_device::MemoryDevice; -pub use math_device::MathDevice; -pub use clock_device::ClockDevice; -pub use input_device::InputDevice; -pub use screen_device::ScreenDevice; -pub use local_device::LocalDevice; -pub use remote_device::RemoteDevice; -pub use file_device::FileDevice; - |