summaryrefslogtreecommitdiffhomepage
path: root/dev/Mod/SCSI
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-12-26 21:19:14 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-12-26 21:19:14 +0100
commit486425ed00acec134f8799bdde64bfd093c5fb55 (patch)
tree5104af49b56f39d0b14941d76f9d6d746cd1677b /dev/Mod/SCSI
parentc0f7f3f300d603d355fc7ec5be317afe1f0ee1b6 (diff)
IMPL: A lot of new changes, see details.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Mod/SCSI')
-rw-r--r--dev/Mod/SCSI/.gitkeep0
-rw-r--r--dev/Mod/SCSI/SCSI.h15
2 files changed, 15 insertions, 0 deletions
diff --git a/dev/Mod/SCSI/.gitkeep b/dev/Mod/SCSI/.gitkeep
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/dev/Mod/SCSI/.gitkeep
diff --git a/dev/Mod/SCSI/SCSI.h b/dev/Mod/SCSI/SCSI.h
new file mode 100644
index 00000000..917c963e
--- /dev/null
+++ b/dev/Mod/SCSI/SCSI.h
@@ -0,0 +1,15 @@
+/* -------------------------------------------
+
+ Copyright (C) 2024, Theater Quality Inc, all rights reserved.
+
+------------------------------------------- */
+
+#pragma once
+
+#include <NewKit/Defines.h>
+
+/// @file SCSI.h
+/// @brief Serial SCSI driver.
+
+template <int PacketBitLen>
+using scsi_packet_type = Kernel::UInt16[PacketBitLen];