13 lines
291 B
C
13 lines
291 B
C
#ifndef __INSTR_MAP_H__
|
|
#define __INSTR_MAP_H__
|
|
#include "instr.h"
|
|
#include "mem.h"
|
|
#include <stdio.h>
|
|
#include "addrs.h"
|
|
|
|
uint8_t _nop (prog_counter_t* pcounter, device_mem_t* devMem);
|
|
|
|
#define HANDLER_REGISTERS {\
|
|
{&_nop, 0b0000000000000000, 0b1111111111111111, 2}}
|
|
|
|
#endif |