├── .gitignore ├── BUGS.md ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Resources ├── Makefile ├── asm.c ├── asm.h ├── cpu.jpeg ├── cpu.jpg └── link.T ├── Sources ├── Lexer.swift ├── Macros.swift ├── Nodes.swift ├── Parser.swift ├── asm2c.swift └── main.swift ├── asm2c.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── asmTests ├── addsub.asm ├── addsub ├── Makefile ├── addsub.c ├── addsub.h ├── addsub.s ├── createLib.sh ├── createTest.sh ├── link.T └── runTest.bat ├── array.asm ├── array ├── Makefile ├── array.c ├── array.h ├── array.s ├── createLib.sh ├── createTest.sh ├── link.T └── runTest.bat ├── chars8b.asm.TOFIX ├── chars8b ├── Makefile ├── chars8b.c ├── createLib.sh ├── createTest.sh ├── link.T └── runTest.bat ├── cmp.asm ├── cmp ├── Makefile ├── cmp.c ├── cmp.h ├── cmp.s ├── createLib.sh ├── createTest.sh ├── link.T └── runTest.bat ├── compile.bat ├── compile.ksh ├── data.asm ├── data ├── Makefile ├── createLib.sh ├── createTest.sh ├── data.c ├── data.h ├── data.s ├── link.T └── runTest.bat ├── dataOff.asm ├── dataOff ├── Makefile ├── createLib.sh ├── createTest.sh ├── dataOff.c ├── dataOff.h ├── dataOff.s ├── link.T └── runTest.bat ├── datadup.asm ├── datadup ├── Makefile ├── createLib.sh ├── createTest.sh ├── datadup.c ├── datadup.h ├── datadup.s ├── link.T └── runTest.bat ├── file.asm ├── file.txt ├── file ├── Makefile ├── createLib.sh ├── createTest.sh ├── file.c ├── file.h ├── file.s ├── file.txt ├── link.T └── runTest.bat ├── generatingRunTestBatFiles.sh ├── hello.asm ├── hello ├── Makefile ├── createLib.sh ├── createTest.sh ├── hello.c ├── hello.h ├── hello.s ├── link.T └── runTest.bat ├── inc.asm ├── inc ├── Makefile ├── createLib.sh ├── createTest.sh ├── inc.c ├── inc.h ├── inc.s ├── link.T └── runTest.bat ├── include.asm ├── include ├── Makefile ├── createLib.sh ├── createTest.sh ├── include.c ├── include.h ├── include.s ├── link.T └── runTest.bat ├── included.inc ├── jxx.asm ├── jxx ├── Makefile ├── createLib.sh ├── createTest.sh ├── jxx.c ├── jxx.h ├── jxx.s ├── link.T └── runTest.bat ├── lodsb.asm ├── lodsb ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── lodsb.c ├── lodsb.h ├── lodsb.s └── runTest.bat ├── loop.asm ├── loop ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── loop.c ├── loop.h ├── loop.s └── runTest.bat ├── macro.asm ├── macro ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── macro.c ├── macro.h ├── macro.s └── runTest.bat ├── mem.asm ├── mem ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── mem.c ├── mem.h ├── mem.s └── runTest.bat ├── mov.asm ├── mov ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── mov.c ├── mov.h ├── mov.s └── runTest.bat ├── movsb.asm ├── movsb ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── movsb.c ├── movsb.h ├── movsb.s └── runTest.bat ├── neg.asm ├── neg ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── neg.c ├── neg.h ├── neg.s └── runTest.bat ├── proc.asm ├── proc ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── proc.c ├── proc.h ├── proc.s └── runTest.bat ├── pushpop.asm ├── pushpop ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── pushpop.c ├── pushpop.h ├── pushpop.s └── runTest.bat ├── rol.asm ├── rol ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── rol.c ├── rol.h ├── rol.s └── runTest.bat ├── runTest.bat ├── runTest.sh ├── shlshr.asm ├── shlshr ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── runTest.bat ├── shlshr.c ├── shlshr.h └── shlshr.s ├── test.asm ├── test ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── runTest.bat ├── test.c ├── test.h └── test.s ├── vbl.asm ├── vbl ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── runTest.bat ├── vbl.c ├── vbl.h └── vbl.s ├── xor.asm └── xor ├── Makefile ├── createLib.sh ├── createTest.sh ├── link.T ├── runTest.bat ├── xor.c ├── xor.h └── xor.s /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/.gitignore -------------------------------------------------------------------------------- /BUGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/BUGS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Resources/Makefile -------------------------------------------------------------------------------- /Resources/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Resources/asm.c -------------------------------------------------------------------------------- /Resources/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Resources/asm.h -------------------------------------------------------------------------------- /Resources/cpu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Resources/cpu.jpeg -------------------------------------------------------------------------------- /Resources/cpu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Resources/cpu.jpg -------------------------------------------------------------------------------- /Resources/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Resources/link.T -------------------------------------------------------------------------------- /Sources/Lexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Sources/Lexer.swift -------------------------------------------------------------------------------- /Sources/Macros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Sources/Macros.swift -------------------------------------------------------------------------------- /Sources/Nodes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Sources/Nodes.swift -------------------------------------------------------------------------------- /Sources/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Sources/Parser.swift -------------------------------------------------------------------------------- /Sources/asm2c.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Sources/asm2c.swift -------------------------------------------------------------------------------- /Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/Sources/main.swift -------------------------------------------------------------------------------- /asm2c.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asm2c.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /asm2c.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asm2c.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /asmTests/addsub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/addsub.asm -------------------------------------------------------------------------------- /asmTests/addsub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/addsub/Makefile -------------------------------------------------------------------------------- /asmTests/addsub/addsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/addsub/addsub.c -------------------------------------------------------------------------------- /asmTests/addsub/addsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/addsub/addsub.h -------------------------------------------------------------------------------- /asmTests/addsub/addsub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/addsub/addsub.s -------------------------------------------------------------------------------- /asmTests/addsub/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/addsub/createLib.sh -------------------------------------------------------------------------------- /asmTests/addsub/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/addsub/createTest.sh -------------------------------------------------------------------------------- /asmTests/addsub/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/addsub/link.T -------------------------------------------------------------------------------- /asmTests/addsub/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/addsub/runTest.bat -------------------------------------------------------------------------------- /asmTests/array.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/array.asm -------------------------------------------------------------------------------- /asmTests/array/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/array/Makefile -------------------------------------------------------------------------------- /asmTests/array/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/array/array.c -------------------------------------------------------------------------------- /asmTests/array/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/array/array.h -------------------------------------------------------------------------------- /asmTests/array/array.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/array/array.s -------------------------------------------------------------------------------- /asmTests/array/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/array/createLib.sh -------------------------------------------------------------------------------- /asmTests/array/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/array/createTest.sh -------------------------------------------------------------------------------- /asmTests/array/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/array/link.T -------------------------------------------------------------------------------- /asmTests/array/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/array/runTest.bat -------------------------------------------------------------------------------- /asmTests/chars8b.asm.TOFIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/chars8b.asm.TOFIX -------------------------------------------------------------------------------- /asmTests/chars8b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/chars8b/Makefile -------------------------------------------------------------------------------- /asmTests/chars8b/chars8b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/chars8b/chars8b.c -------------------------------------------------------------------------------- /asmTests/chars8b/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/chars8b/createLib.sh -------------------------------------------------------------------------------- /asmTests/chars8b/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/chars8b/createTest.sh -------------------------------------------------------------------------------- /asmTests/chars8b/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/chars8b/link.T -------------------------------------------------------------------------------- /asmTests/chars8b/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/chars8b/runTest.bat -------------------------------------------------------------------------------- /asmTests/cmp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/cmp.asm -------------------------------------------------------------------------------- /asmTests/cmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/cmp/Makefile -------------------------------------------------------------------------------- /asmTests/cmp/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/cmp/cmp.c -------------------------------------------------------------------------------- /asmTests/cmp/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/cmp/cmp.h -------------------------------------------------------------------------------- /asmTests/cmp/cmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/cmp/cmp.s -------------------------------------------------------------------------------- /asmTests/cmp/createLib.sh: -------------------------------------------------------------------------------- 1 | rm *.o;make OBJECTS=cmp.o TARGET_NAME=cmp 2 | -------------------------------------------------------------------------------- /asmTests/cmp/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/cmp/createTest.sh -------------------------------------------------------------------------------- /asmTests/cmp/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/cmp/link.T -------------------------------------------------------------------------------- /asmTests/cmp/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/cmp/runTest.bat -------------------------------------------------------------------------------- /asmTests/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/compile.bat -------------------------------------------------------------------------------- /asmTests/compile.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/compile.ksh -------------------------------------------------------------------------------- /asmTests/data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/data.asm -------------------------------------------------------------------------------- /asmTests/data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/data/Makefile -------------------------------------------------------------------------------- /asmTests/data/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/data/createLib.sh -------------------------------------------------------------------------------- /asmTests/data/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/data/createTest.sh -------------------------------------------------------------------------------- /asmTests/data/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/data/data.c -------------------------------------------------------------------------------- /asmTests/data/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/data/data.h -------------------------------------------------------------------------------- /asmTests/data/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/data/data.s -------------------------------------------------------------------------------- /asmTests/data/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/data/link.T -------------------------------------------------------------------------------- /asmTests/data/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/data/runTest.bat -------------------------------------------------------------------------------- /asmTests/dataOff.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/dataOff.asm -------------------------------------------------------------------------------- /asmTests/dataOff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/dataOff/Makefile -------------------------------------------------------------------------------- /asmTests/dataOff/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/dataOff/createLib.sh -------------------------------------------------------------------------------- /asmTests/dataOff/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/dataOff/createTest.sh -------------------------------------------------------------------------------- /asmTests/dataOff/dataOff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/dataOff/dataOff.c -------------------------------------------------------------------------------- /asmTests/dataOff/dataOff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/dataOff/dataOff.h -------------------------------------------------------------------------------- /asmTests/dataOff/dataOff.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/dataOff/dataOff.s -------------------------------------------------------------------------------- /asmTests/dataOff/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/dataOff/link.T -------------------------------------------------------------------------------- /asmTests/dataOff/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/dataOff/runTest.bat -------------------------------------------------------------------------------- /asmTests/datadup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/datadup.asm -------------------------------------------------------------------------------- /asmTests/datadup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/datadup/Makefile -------------------------------------------------------------------------------- /asmTests/datadup/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/datadup/createLib.sh -------------------------------------------------------------------------------- /asmTests/datadup/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/datadup/createTest.sh -------------------------------------------------------------------------------- /asmTests/datadup/datadup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/datadup/datadup.c -------------------------------------------------------------------------------- /asmTests/datadup/datadup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/datadup/datadup.h -------------------------------------------------------------------------------- /asmTests/datadup/datadup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/datadup/datadup.s -------------------------------------------------------------------------------- /asmTests/datadup/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/datadup/link.T -------------------------------------------------------------------------------- /asmTests/datadup/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/datadup/runTest.bat -------------------------------------------------------------------------------- /asmTests/file.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file.asm -------------------------------------------------------------------------------- /asmTests/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file.txt -------------------------------------------------------------------------------- /asmTests/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file/Makefile -------------------------------------------------------------------------------- /asmTests/file/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file/createLib.sh -------------------------------------------------------------------------------- /asmTests/file/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file/createTest.sh -------------------------------------------------------------------------------- /asmTests/file/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file/file.c -------------------------------------------------------------------------------- /asmTests/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file/file.h -------------------------------------------------------------------------------- /asmTests/file/file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file/file.s -------------------------------------------------------------------------------- /asmTests/file/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file/file.txt -------------------------------------------------------------------------------- /asmTests/file/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file/link.T -------------------------------------------------------------------------------- /asmTests/file/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/file/runTest.bat -------------------------------------------------------------------------------- /asmTests/generatingRunTestBatFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/generatingRunTestBatFiles.sh -------------------------------------------------------------------------------- /asmTests/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/hello.asm -------------------------------------------------------------------------------- /asmTests/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/hello/Makefile -------------------------------------------------------------------------------- /asmTests/hello/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/hello/createLib.sh -------------------------------------------------------------------------------- /asmTests/hello/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/hello/createTest.sh -------------------------------------------------------------------------------- /asmTests/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/hello/hello.c -------------------------------------------------------------------------------- /asmTests/hello/hello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/hello/hello.h -------------------------------------------------------------------------------- /asmTests/hello/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/hello/hello.s -------------------------------------------------------------------------------- /asmTests/hello/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/hello/link.T -------------------------------------------------------------------------------- /asmTests/hello/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/hello/runTest.bat -------------------------------------------------------------------------------- /asmTests/inc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/inc.asm -------------------------------------------------------------------------------- /asmTests/inc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/inc/Makefile -------------------------------------------------------------------------------- /asmTests/inc/createLib.sh: -------------------------------------------------------------------------------- 1 | rm *.o;make OBJECTS=inc.o TARGET_NAME=inc 2 | -------------------------------------------------------------------------------- /asmTests/inc/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/inc/createTest.sh -------------------------------------------------------------------------------- /asmTests/inc/inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/inc/inc.c -------------------------------------------------------------------------------- /asmTests/inc/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/inc/inc.h -------------------------------------------------------------------------------- /asmTests/inc/inc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/inc/inc.s -------------------------------------------------------------------------------- /asmTests/inc/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/inc/link.T -------------------------------------------------------------------------------- /asmTests/inc/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/inc/runTest.bat -------------------------------------------------------------------------------- /asmTests/include.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/include.asm -------------------------------------------------------------------------------- /asmTests/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/include/Makefile -------------------------------------------------------------------------------- /asmTests/include/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/include/createLib.sh -------------------------------------------------------------------------------- /asmTests/include/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/include/createTest.sh -------------------------------------------------------------------------------- /asmTests/include/include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/include/include.c -------------------------------------------------------------------------------- /asmTests/include/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/include/include.h -------------------------------------------------------------------------------- /asmTests/include/include.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/include/include.s -------------------------------------------------------------------------------- /asmTests/include/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/include/link.T -------------------------------------------------------------------------------- /asmTests/include/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/include/runTest.bat -------------------------------------------------------------------------------- /asmTests/included.inc: -------------------------------------------------------------------------------- 1 | MOV al,0 2 | JMP exitLabel 3 | -------------------------------------------------------------------------------- /asmTests/jxx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/jxx.asm -------------------------------------------------------------------------------- /asmTests/jxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/jxx/Makefile -------------------------------------------------------------------------------- /asmTests/jxx/createLib.sh: -------------------------------------------------------------------------------- 1 | rm *.o;make OBJECTS=jxx.o TARGET_NAME=jxx 2 | -------------------------------------------------------------------------------- /asmTests/jxx/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/jxx/createTest.sh -------------------------------------------------------------------------------- /asmTests/jxx/jxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/jxx/jxx.c -------------------------------------------------------------------------------- /asmTests/jxx/jxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/jxx/jxx.h -------------------------------------------------------------------------------- /asmTests/jxx/jxx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/jxx/jxx.s -------------------------------------------------------------------------------- /asmTests/jxx/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/jxx/link.T -------------------------------------------------------------------------------- /asmTests/jxx/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/jxx/runTest.bat -------------------------------------------------------------------------------- /asmTests/lodsb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/lodsb.asm -------------------------------------------------------------------------------- /asmTests/lodsb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/lodsb/Makefile -------------------------------------------------------------------------------- /asmTests/lodsb/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/lodsb/createLib.sh -------------------------------------------------------------------------------- /asmTests/lodsb/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/lodsb/createTest.sh -------------------------------------------------------------------------------- /asmTests/lodsb/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/lodsb/link.T -------------------------------------------------------------------------------- /asmTests/lodsb/lodsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/lodsb/lodsb.c -------------------------------------------------------------------------------- /asmTests/lodsb/lodsb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/lodsb/lodsb.h -------------------------------------------------------------------------------- /asmTests/lodsb/lodsb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/lodsb/lodsb.s -------------------------------------------------------------------------------- /asmTests/lodsb/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/lodsb/runTest.bat -------------------------------------------------------------------------------- /asmTests/loop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/loop.asm -------------------------------------------------------------------------------- /asmTests/loop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/loop/Makefile -------------------------------------------------------------------------------- /asmTests/loop/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/loop/createLib.sh -------------------------------------------------------------------------------- /asmTests/loop/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/loop/createTest.sh -------------------------------------------------------------------------------- /asmTests/loop/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/loop/link.T -------------------------------------------------------------------------------- /asmTests/loop/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/loop/loop.c -------------------------------------------------------------------------------- /asmTests/loop/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/loop/loop.h -------------------------------------------------------------------------------- /asmTests/loop/loop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/loop/loop.s -------------------------------------------------------------------------------- /asmTests/loop/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/loop/runTest.bat -------------------------------------------------------------------------------- /asmTests/macro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/macro.asm -------------------------------------------------------------------------------- /asmTests/macro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/macro/Makefile -------------------------------------------------------------------------------- /asmTests/macro/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/macro/createLib.sh -------------------------------------------------------------------------------- /asmTests/macro/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/macro/createTest.sh -------------------------------------------------------------------------------- /asmTests/macro/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/macro/link.T -------------------------------------------------------------------------------- /asmTests/macro/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/macro/macro.c -------------------------------------------------------------------------------- /asmTests/macro/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/macro/macro.h -------------------------------------------------------------------------------- /asmTests/macro/macro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/macro/macro.s -------------------------------------------------------------------------------- /asmTests/macro/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/macro/runTest.bat -------------------------------------------------------------------------------- /asmTests/mem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mem.asm -------------------------------------------------------------------------------- /asmTests/mem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mem/Makefile -------------------------------------------------------------------------------- /asmTests/mem/createLib.sh: -------------------------------------------------------------------------------- 1 | rm *.o;make OBJECTS=mem.o TARGET_NAME=mem 2 | -------------------------------------------------------------------------------- /asmTests/mem/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mem/createTest.sh -------------------------------------------------------------------------------- /asmTests/mem/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mem/link.T -------------------------------------------------------------------------------- /asmTests/mem/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mem/mem.c -------------------------------------------------------------------------------- /asmTests/mem/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mem/mem.h -------------------------------------------------------------------------------- /asmTests/mem/mem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mem/mem.s -------------------------------------------------------------------------------- /asmTests/mem/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mem/runTest.bat -------------------------------------------------------------------------------- /asmTests/mov.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mov.asm -------------------------------------------------------------------------------- /asmTests/mov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mov/Makefile -------------------------------------------------------------------------------- /asmTests/mov/createLib.sh: -------------------------------------------------------------------------------- 1 | rm *.o;make OBJECTS=mov.o TARGET_NAME=mov 2 | -------------------------------------------------------------------------------- /asmTests/mov/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mov/createTest.sh -------------------------------------------------------------------------------- /asmTests/mov/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mov/link.T -------------------------------------------------------------------------------- /asmTests/mov/mov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mov/mov.c -------------------------------------------------------------------------------- /asmTests/mov/mov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mov/mov.h -------------------------------------------------------------------------------- /asmTests/mov/mov.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mov/mov.s -------------------------------------------------------------------------------- /asmTests/mov/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/mov/runTest.bat -------------------------------------------------------------------------------- /asmTests/movsb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/movsb.asm -------------------------------------------------------------------------------- /asmTests/movsb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/movsb/Makefile -------------------------------------------------------------------------------- /asmTests/movsb/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/movsb/createLib.sh -------------------------------------------------------------------------------- /asmTests/movsb/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/movsb/createTest.sh -------------------------------------------------------------------------------- /asmTests/movsb/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/movsb/link.T -------------------------------------------------------------------------------- /asmTests/movsb/movsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/movsb/movsb.c -------------------------------------------------------------------------------- /asmTests/movsb/movsb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/movsb/movsb.h -------------------------------------------------------------------------------- /asmTests/movsb/movsb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/movsb/movsb.s -------------------------------------------------------------------------------- /asmTests/movsb/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/movsb/runTest.bat -------------------------------------------------------------------------------- /asmTests/neg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/neg.asm -------------------------------------------------------------------------------- /asmTests/neg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/neg/Makefile -------------------------------------------------------------------------------- /asmTests/neg/createLib.sh: -------------------------------------------------------------------------------- 1 | rm *.o;make OBJECTS=neg.o TARGET_NAME=neg 2 | -------------------------------------------------------------------------------- /asmTests/neg/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/neg/createTest.sh -------------------------------------------------------------------------------- /asmTests/neg/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/neg/link.T -------------------------------------------------------------------------------- /asmTests/neg/neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/neg/neg.c -------------------------------------------------------------------------------- /asmTests/neg/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/neg/neg.h -------------------------------------------------------------------------------- /asmTests/neg/neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/neg/neg.s -------------------------------------------------------------------------------- /asmTests/neg/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/neg/runTest.bat -------------------------------------------------------------------------------- /asmTests/proc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/proc.asm -------------------------------------------------------------------------------- /asmTests/proc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/proc/Makefile -------------------------------------------------------------------------------- /asmTests/proc/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/proc/createLib.sh -------------------------------------------------------------------------------- /asmTests/proc/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/proc/createTest.sh -------------------------------------------------------------------------------- /asmTests/proc/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/proc/link.T -------------------------------------------------------------------------------- /asmTests/proc/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/proc/proc.c -------------------------------------------------------------------------------- /asmTests/proc/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/proc/proc.h -------------------------------------------------------------------------------- /asmTests/proc/proc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/proc/proc.s -------------------------------------------------------------------------------- /asmTests/proc/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/proc/runTest.bat -------------------------------------------------------------------------------- /asmTests/pushpop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/pushpop.asm -------------------------------------------------------------------------------- /asmTests/pushpop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/pushpop/Makefile -------------------------------------------------------------------------------- /asmTests/pushpop/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/pushpop/createLib.sh -------------------------------------------------------------------------------- /asmTests/pushpop/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/pushpop/createTest.sh -------------------------------------------------------------------------------- /asmTests/pushpop/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/pushpop/link.T -------------------------------------------------------------------------------- /asmTests/pushpop/pushpop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/pushpop/pushpop.c -------------------------------------------------------------------------------- /asmTests/pushpop/pushpop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/pushpop/pushpop.h -------------------------------------------------------------------------------- /asmTests/pushpop/pushpop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/pushpop/pushpop.s -------------------------------------------------------------------------------- /asmTests/pushpop/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/pushpop/runTest.bat -------------------------------------------------------------------------------- /asmTests/rol.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/rol.asm -------------------------------------------------------------------------------- /asmTests/rol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/rol/Makefile -------------------------------------------------------------------------------- /asmTests/rol/createLib.sh: -------------------------------------------------------------------------------- 1 | rm *.o;make OBJECTS=rol.o TARGET_NAME=rol 2 | -------------------------------------------------------------------------------- /asmTests/rol/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/rol/createTest.sh -------------------------------------------------------------------------------- /asmTests/rol/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/rol/link.T -------------------------------------------------------------------------------- /asmTests/rol/rol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/rol/rol.c -------------------------------------------------------------------------------- /asmTests/rol/rol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/rol/rol.h -------------------------------------------------------------------------------- /asmTests/rol/rol.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/rol/rol.s -------------------------------------------------------------------------------- /asmTests/rol/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/rol/runTest.bat -------------------------------------------------------------------------------- /asmTests/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/runTest.bat -------------------------------------------------------------------------------- /asmTests/runTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/runTest.sh -------------------------------------------------------------------------------- /asmTests/shlshr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/shlshr.asm -------------------------------------------------------------------------------- /asmTests/shlshr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/shlshr/Makefile -------------------------------------------------------------------------------- /asmTests/shlshr/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/shlshr/createLib.sh -------------------------------------------------------------------------------- /asmTests/shlshr/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/shlshr/createTest.sh -------------------------------------------------------------------------------- /asmTests/shlshr/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/shlshr/link.T -------------------------------------------------------------------------------- /asmTests/shlshr/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/shlshr/runTest.bat -------------------------------------------------------------------------------- /asmTests/shlshr/shlshr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/shlshr/shlshr.c -------------------------------------------------------------------------------- /asmTests/shlshr/shlshr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/shlshr/shlshr.h -------------------------------------------------------------------------------- /asmTests/shlshr/shlshr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/shlshr/shlshr.s -------------------------------------------------------------------------------- /asmTests/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/test.asm -------------------------------------------------------------------------------- /asmTests/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/test/Makefile -------------------------------------------------------------------------------- /asmTests/test/createLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/test/createLib.sh -------------------------------------------------------------------------------- /asmTests/test/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/test/createTest.sh -------------------------------------------------------------------------------- /asmTests/test/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/test/link.T -------------------------------------------------------------------------------- /asmTests/test/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/test/runTest.bat -------------------------------------------------------------------------------- /asmTests/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/test/test.c -------------------------------------------------------------------------------- /asmTests/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/test/test.h -------------------------------------------------------------------------------- /asmTests/test/test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/test/test.s -------------------------------------------------------------------------------- /asmTests/vbl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/vbl.asm -------------------------------------------------------------------------------- /asmTests/vbl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/vbl/Makefile -------------------------------------------------------------------------------- /asmTests/vbl/createLib.sh: -------------------------------------------------------------------------------- 1 | rm *.o;make OBJECTS=vbl.o TARGET_NAME=vbl 2 | -------------------------------------------------------------------------------- /asmTests/vbl/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/vbl/createTest.sh -------------------------------------------------------------------------------- /asmTests/vbl/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/vbl/link.T -------------------------------------------------------------------------------- /asmTests/vbl/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/vbl/runTest.bat -------------------------------------------------------------------------------- /asmTests/vbl/vbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/vbl/vbl.c -------------------------------------------------------------------------------- /asmTests/vbl/vbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/vbl/vbl.h -------------------------------------------------------------------------------- /asmTests/vbl/vbl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/vbl/vbl.s -------------------------------------------------------------------------------- /asmTests/xor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/xor.asm -------------------------------------------------------------------------------- /asmTests/xor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/xor/Makefile -------------------------------------------------------------------------------- /asmTests/xor/createLib.sh: -------------------------------------------------------------------------------- 1 | rm *.o;make OBJECTS=xor.o TARGET_NAME=xor 2 | -------------------------------------------------------------------------------- /asmTests/xor/createTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/xor/createTest.sh -------------------------------------------------------------------------------- /asmTests/xor/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/xor/link.T -------------------------------------------------------------------------------- /asmTests/xor/runTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/xor/runTest.bat -------------------------------------------------------------------------------- /asmTests/xor/xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/xor/xor.c -------------------------------------------------------------------------------- /asmTests/xor/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/xor/xor.h -------------------------------------------------------------------------------- /asmTests/xor/xor.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frranck/asm2c/HEAD/asmTests/xor/xor.s --------------------------------------------------------------------------------