├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── lib ├── LICENSE ├── README └── otcc │ ├── orig │ ├── compile.bat │ ├── otccn.c │ └── test.c │ ├── otccn.c │ ├── otccn.sln │ ├── otccn.vcxproj │ ├── otccn.vcxproj.filters │ └── test.c ├── src └── mdRtcc.bas └── test ├── Form1.frm ├── Module1.bas └── Project1.vbp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/README.md -------------------------------------------------------------------------------- /lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/lib/LICENSE -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/lib/README -------------------------------------------------------------------------------- /lib/otcc/orig/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/lib/otcc/orig/compile.bat -------------------------------------------------------------------------------- /lib/otcc/orig/otccn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/lib/otcc/orig/otccn.c -------------------------------------------------------------------------------- /lib/otcc/orig/test.c: -------------------------------------------------------------------------------- 1 | main(n, t) { 2 | return 0x42; 3 | } -------------------------------------------------------------------------------- /lib/otcc/otccn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/lib/otcc/otccn.c -------------------------------------------------------------------------------- /lib/otcc/otccn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/lib/otcc/otccn.sln -------------------------------------------------------------------------------- /lib/otcc/otccn.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/lib/otcc/otccn.vcxproj -------------------------------------------------------------------------------- /lib/otcc/otccn.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/lib/otcc/otccn.vcxproj.filters -------------------------------------------------------------------------------- /lib/otcc/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/lib/otcc/test.c -------------------------------------------------------------------------------- /src/mdRtcc.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/src/mdRtcc.bas -------------------------------------------------------------------------------- /test/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/test/Form1.frm -------------------------------------------------------------------------------- /test/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/test/Module1.bas -------------------------------------------------------------------------------- /test/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VbRtcc/HEAD/test/Project1.vbp --------------------------------------------------------------------------------