Initial check in

This commit is contained in:
2026-01-03 19:05:48 +01:00
commit 1254878a31
253 changed files with 30484 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
// ============================================================================
// FX2LP SFR Registers at 0xF0 - 0xFF
// ----------------------------------------------------------------------------
// 0xF0 - B
// 0xF1 -
// 0xF2 -
// 0xF3 -
// 0xF4 -
// 0xF5 -
// 0xF6 -
// 0xF7 -
// 0xF8 - EIP
// 0xF9 -
// 0xFA -
// 0xFB -
// 0xFC -
// 0xFD -
// 0xFE -
// 0xFF -
// ============================================================================
#ifndef FX2REGS_SFRFX_H
#define FX2REGS_SFRFX_H
sfr B = 0xF0;
sfr EIP = 0xF8;
// ------------------------------------
// EIP bits
// ------------------------------------
sbit PUSB = 0xF8 +0;
sbit PI2C = 0xF8 +1;
sbit EIPX4 = 0xF8 +2;
sbit EIPX5 = 0xF8 +3;
sbit EIPX6 = 0xF8 +4;
#endif