RISC-V/V003/debug/debug.h
2024-05-07 11:46:49 +02: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