RISC-V/debug/debug.h
2024-03-15 15:13:20 +01:00

11 lines
222 B
C++

#ifndef DEBUG_H
#define DEBUG_H
#include "baselayer.h"
class Debug : public BaseLayer {
public:
explicit Debug () noexcept;
uint32_t Down (const char * buf, const uint32_t size) override;
};
#endif // DEBUG_H