Initial Commit

This commit is contained in:
Mario Fetka
2023-05-18 07:33:02 +02:00
parent 882a9c99d6
commit 774ad0e693
95 changed files with 6818 additions and 0 deletions

4
libexec/LICENSE Normal file
View File

@@ -0,0 +1,4 @@
LIMITED USAGE STATEMENT:
The technology is intended for use only directly related to product development using WDC's 65xx technology is
expressly NOT for cloning, redesign, or reverse engineering. You may make copies of the information for your use only.

BIN
libexec/cc3250.dll Normal file

Binary file not shown.

BIN
libexec/wdc02as.exe Executable file

Binary file not shown.

32
libexec/wdc02cc.cfg Normal file
View File

@@ -0,0 +1,32 @@
; Compiler configuration file
;
; Each of the following items must be defined with the exception of
; the 'Float' item if no floating point is used. The User Reg space
; can be of any desired size. This space is used by the compiler to
; hold automatic variables that would normally be located on the
; pseudo-stack. Priority is especially given to pointers.
;
; NOTE! Any changes made to this file must be reflected in the
; ZPAGE.INC file in the INCLUDE directory and then the libraries
; MUST be rebuilt. Also any files previously compiled MUST be
; recompiled.
;
User Register Count=16 ; count of user register bytes
IF USING_02
;User Register Start=0x00 ; N byte user register area
User Register Start=0x20 ; N byte user register area
Stack Register Start=0x30 ; 8 byte stack area
Compiler Register Start=0x38 ; 20 byte compiler temporary register area
Work Register Start=0x4c ; 12 byte general purpose work area
Float Register Start=0x58 ; 22 byte floating point area
ELSEIF USING_134
User Register Start=0x40 ; N byte user register area
Stack Register Start=0x50 ; 8 byte stack area
Compiler Register Start=0x58 ; 20 byte compiler temporary register area
Work Register Start=0x6c ; 12 byte general purpose work area
Float Register Start=0x78 ; 22 byte floating point area
ENDIF

BIN
libexec/wdc02cc.exe Executable file

Binary file not shown.

BIN
libexec/wdc02op.exe Executable file

Binary file not shown.

BIN
libexec/wdc816as.exe Executable file

Binary file not shown.

BIN
libexec/wdc816cc.exe Executable file

Binary file not shown.

BIN
libexec/wdc816op.exe Executable file

Binary file not shown.

BIN
libexec/wdcdumpobj.exe Executable file

Binary file not shown.

BIN
libexec/wdclib.exe Executable file

Binary file not shown.

BIN
libexec/wdclink.exe Executable file

Binary file not shown.

BIN
libexec/wdcln.exe Executable file

Binary file not shown.

BIN
libexec/wdcobj.exe Executable file

Binary file not shown.

BIN
libexec/wdcsym.exe Executable file

Binary file not shown.