Files
OpenEPaperLink/zbs243_shared/cpu/8051/cpu.h
2023-03-27 15:32:37 +02:00

19 lines
186 B
C

#ifndef _CPUi_H_
#define _CPUi_H_
#include <stdint.h>
typedef uint16_t uintptr_near_t;
#define VERSIONMARKER __at (0x008b)
#define irqsOn() IEN_EA = 1
#include "soc.h"
#endif