| 355 | } |
| 356 | |
| 357 | __attribute__((always_inline)) inline void SetCommandSet(uint8_t set){ |
| 358 | cRegs->config = (cRegs->config & ~NVME_CFG_CSS(NVME_CFG_CSS_MASK)) | NVME_CFG_CSS(set); |
| 359 | } |
| 360 | |
| 361 | __attribute__((always_inline)) inline void Enable(){ |
| 362 | cRegs->config |= NVME_CFG_ENABLE; |
nothing calls this directly
no outgoing calls
no test coverage detected