First iteration of denali server

This commit is contained in:
Drew Galbraith 2023-06-15 16:20:29 -07:00
parent 82b1a5c4db
commit ffa2d97a64
18 changed files with 273 additions and 39 deletions

View file

@ -0,0 +1,20 @@
#pragma once
#include <stdint.h>
#define DENALI_INVALID 0
#define DENALI_READ 100
struct DenaliRead {
uint64_t device_id;
uint64_t lba;
uint64_t size;
};
// Will also include a memory capability.
struct DenaliReadResponse {
uint64_t device_id;
uint64_t lba;
uint64_t size;
};