20 lines
410 B
C
20 lines
410 B
C
#include "instr.h"
|
|
#include "mem.h"
|
|
#include <stdio.h>
|
|
#include "addrs.h"
|
|
|
|
// static inline uint8_t _dispatchInstruction(const opcode_t op, prog_counter_t* programCounter, device_mem_t* devMem);
|
|
|
|
#if ARCH == AVRe
|
|
#include "generated_AVRe.h"
|
|
#endif
|
|
#if ARCH == AVRxm
|
|
#include "generated_AVRxm.h"
|
|
#endif
|
|
#if ARCH == AVRxt
|
|
#include "generated_AVRxt.h"
|
|
#endif
|
|
#if ARCH == AVRrc
|
|
#include "generated_AVRrc.h"
|
|
#endif
|