RISC-V/V003/debug/debug.h

12 lines
222 B
C
Raw Permalink Normal View History

2024-03-15 15:13:20 +01:00
#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