14 lines
319 B
C
14 lines
319 B
C
// See LICENSE for license details.
|
|
|
|
#ifndef SRC_MAIN_C_TRANSLATOR_H
|
|
#define SRC_MAIN_C_TRANSLATOR_H
|
|
|
|
#include "rocc-software/src/xcustom.h"
|
|
|
|
#define XCUSTOM_TRANS 1
|
|
|
|
#define doTranslate(y, vaddr) \
|
|
ROCC_INSTRUCTION(XCUSTOM_TRANS, y, vaddr, 0, 0);
|
|
|
|
#endif // SRC_MAIN_C_TRANSLATOR_H
|