Add missing header for regs.hpp

This enum was using the `u32` type without including `helpers.hpp`, causing weird intermediate compiler errors when making incremental builds.
This commit is contained in:
Wunkolo 2023-06-16 05:48:33 -07:00
parent f8e89f4db1
commit 0199918cd2

View file

@ -1,4 +1,5 @@
#pragma once
#include "helpers.hpp"
namespace PICAInternalRegs {
enum : u32 {
@ -71,7 +72,7 @@ namespace PICAInternalRegs {
FixedAttribData0 = 0x233,
FixedAttribData1 = 0x234,
FixedAttribData2 = 0x235,
// Command processor registers
CmdBufSize0 = 0x238,
CmdBufSize1 = 0x239,