summaryrefslogtreecommitdiffhomepage
path: root/src/modules/SCSI/SCSI.h
blob: b6228e54341e92eb1e563b42686be23906c114ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ========================================

  Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.

======================================== */

#pragma once

#include <NeKit/Config.h>

/// @file SCSI.h
/// @brief Small Computer System Interface device.

namespace Kernel {
template <Int32 PacketBitLen>
using scsi_packet_type = Kernel::UInt16[PacketBitLen];

using scsi_packet_type_12 = scsi_packet_type<12>;

extern const scsi_packet_type_12 kCDRomPacketTemplate;
}  // namespace Kernel