1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#ifndef ULM_TRAP_H
#define ULM_TRAP_H

#include <stdint.h>
#include "alu.h"

#ifdef __cplusplus
extern "C" {
#endif // __cplusplus

/*
 * Implements the trap specified here:
 **/
#include "../ulm0/hdw_trap.h"

#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus

#endif // ULM_TRAP_H