summaryrefslogtreecommitdiff
path: root/src/consts.rs
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2025-12-28 12:01:39 +0100
committertaitep <taitep@taitep.se>2025-12-28 12:01:39 +0100
commit9a9bef7dd7dce7d5c10b7cf49a42478ad85829ac (patch)
treeea832693678899e97aecf12bd620f0123b6ce3d2 /src/consts.rs
parent8024af6b1348b5f47fabe5a1949de54607a33888 (diff)
Remove consts.rs and just use plain types
Diffstat (limited to 'src/consts.rs')
-rw-r--r--src/consts.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/consts.rs b/src/consts.rs
deleted file mode 100644
index 1e52c92..0000000
--- a/src/consts.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-pub type Byte = u8;
-pub type HWord = u16;
-pub type Word = u32;
-pub type DWord = u64;
-
-pub type RegValue = DWord;
-pub type Addr = DWord;
-
-pub type RegId = u8;