acadia/sys/denali/ahci/command.h
2023-12-08 15:11:56 -08:00

10 lines
132 B
C

#pragma once
#include <stdint.h>
struct CommandInfo {
uint8_t command;
uint64_t lba;
uint16_t sectors;
uint64_t paddr;
};