首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

vc2022重新编的 cc65 编译器

移动开发 19.7MB 13 需要积分: 1
立即下载

资源介绍:

cc65 可用于apple ii/e,任天堂红白机,6502,65c02,65186,65c186单片机。版本CC65 2.9.2
/*****************************************************************************/ /* */ /* codegen.c */ /* */ /* 6502 code generator */ /* */ /* */ /* */ /* (C) 1998-2002 Ullrich von Bassewitz */ /* Wacholderweg 14 */ /* D-70597 Stuttgart */ /* EMail: uz@cc65.org */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ /* warranty. In no event will the authors be held liable for any damages */ /* arising from the use of this software. */ /* */ /* Permission is granted to anyone to use this software for any purpose, */ /* including commercial applications, and to alter it and redistribute it */ /* freely, subject to the following restrictions: */ /* */ /* 1. The origin of this software must not be misrepresented; you must not */ /* claim that you wrote the original software. If you use this software */ /* in a product, an acknowledgment in the product documentation would be */ /* appreciated but is not required. */ /* 2. Altered source versions must be plainly marked as such, and must not */ /* be misrepresented as being the original software. */ /* 3. This notice may not be removed or altered from any source */ /* distribution. */ /* */ /*****************************************************************************/ #include #include #include /* common */ #include "check.h" #include "strbuf.h" #include "version.h" #include "xmalloc.h" #include "xsprintf.h" /* cc65 */ #include "asmcode.h" #include "asmlabel.h" #include "casenode.h" #include "codeseg.h" #include "cpu.h" #include "dataseg.h" #include "error.h" #include "global.h" #include "segments.h" #include "textseg.h" #include "util.h" #include "codegen.h" /*****************************************************************************/ /* Data */ /*****************************************************************************/ /* Compiler relative stack pointer */ int oursp = 0; /*****************************************************************************/ /* Helpers */ /*****************************************************************************/ static void typeerror (unsigned type) /* Print an error message about an invalid operand type */ { Internal ("Invalid type in CF flags: %04X, type = %u", type, type & CF_TYPE); } static void CheckLocalOffs (unsigned Offs) /* Check the offset into the stack for 8bit range */ { if (Offs >= 256) { /* Too many local vars */ Error ("Too many local variables"); } } static const char* GetLabelName (unsigned Flags, unsigned long Label, long Offs) { static char Buf [256]; /* Label name */ /* Create the correct label name */ switch (Flags & CF_ADDRMASK) { case CF_STATIC: /* Static memory cell */ if (Offs) { xsprintf (Buf, sizeof (Buf), "%s%+ld", LocalLabelName (Label), Offs); } else { xsprintf (Buf, sizeof (Buf), "%s", LocalLabelName (Label)); } break; case CF_EXTERNAL: /* External label */ if (Offs) { xsprintf (Buf, sizeof (Buf), "_%s%+ld", (char*) Label, Offs); } else { xsprintf (Buf, sizeof (Buf), "_%s", (char*) Label); } break; case CF_ABSOLUTE: /* Absolute address */ xsprintf (Buf, sizeof (Buf), "$%04X", (int)((Label+Offs) & 0xFFFF)); break; case CF_REGVAR: /* Variable in register bank */ xsprintf (Buf, sizeof (Buf), "regbank+%u", (unsigned)((Label+Offs) & 0xFFFF)); break; default: Internal ("Invalid address flags: %04X", Flags); } /* Return a pointer to the static buffer */ return Buf; } /*****************************************************************************/ /* Pre- and postamble */ /*****************************************************************************/ void g_preamble (void) /* Generate the assembler code preamble */ { /* Create a new (global) segment list and remember it */ PushSegments (0); GS = CS; /* Identify the compiler version */ AddTextLine (";"); AddTextLine ("; File generated by cc65 v %u.%u.%u", VER_MAJOR, VER_MINOR, VER_PATCH); AddTextLine (";"); /* Insert some object file options */ AddTextLine ("\t.fopt\t\tcompiler,\"cc65 v %u.%u.%u\"", VER_MAJOR, VER_MINOR, VER_PATCH); /* If we're producing code for some other CPU, switch the command set */ if (CPU == CPU_65C02) { AddTextLine ("\t.pc02"); } /* Allow auto import for runtime library routines */ AddTextLine ("\t.autoimport\ton"); /* Switch the assembler into case sensitive mode */ AddTextLine ("\t.case\t\ton"); /* Tell the assembler if we want to generate debug info */ AddTextLine ("\t.debuginfo\t%s", (DebugInfo != 0)? "on" : "off"); /* Import the stack pointer for direct auto variable access */ AddTextLine ("\t.importzp\tsp, sreg, regsave, regbank, tmp1, ptr1, ptr2"); /* Define long branch macros */ AddTextLine ("\t.macpack\tlongbranch"); } void g_fileinfo (const char* Name, unsigned long Size, unsigned long MTime) /* If debug info is enabled, place a file info into the source */ { if (DebugInfo) { /* We have to place this into the global text segment, so it will * appear before all .dbg line statements. */ TS_AddLine (GS->Text, "\t.dbg\t\tfile, \"%s\", %lu, %lu", Name, Size, MTime); } } /*****************************************************************************/ /* Segment support */ /*****************************************************************************/ void g_userodata (void) /* Switch to the read only data segment */ { UseDataSeg (SEG_RODATA); } void g_usedata (void) /* Switch to the data segment */ { UseDataSeg (SEG_DATA); } void g_usebss (void) /* Switch to the bss segment */ { UseDataSeg (SEG_BSS); } void g_segname (segment_t Seg, const char* Name) /* Set the name of a segment */ { DataSeg* S; /* Remember the new name */ NewSegName (Seg, Name); /* Emit a segment directive for the data style segments */ switch (Seg) { case SEG_RODATA: S = CS->ROData; break; case SEG_DATA: S = CS->Data; break; case SEG_BSS: S = CS->BSS; break; default: S = 0; break; } if (S) { DS_AddLine (S, ".segment\t\"%s\"", Name); } } /*****************************************************************************/ /* Code */ /*****************************************************************************/ unsigned sizeofarg (unsigned flags) /* Return the size of a function argument type that is encoded in flags */ { switch (flags & CF_TYPE) { case CF_CHAR: return (flags & CF_FORC

资源文件列表:

cc65.zip 大约有734个文件
  1. cc65/
  2. cc65/.vs/
  3. cc65/.vs/cc65/
  4. cc65/.vs/cc65/FileContentIndex/
  5. cc65/.vs/cc65/FileContentIndex/002dd9bb-036e-40aa-84c6-c5a422c5f587.vsidx 180.01KB
  6. cc65/.vs/cc65/FileContentIndex/0493b7fc-5350-49e5-a53a-5298ac7a872e.vsidx 175.15KB
  7. cc65/.vs/cc65/FileContentIndex/5710ee75-30d5-4afe-b37e-6f11d52cc89b.vsidx 172.12KB
  8. cc65/.vs/cc65/FileContentIndex/a071d1c8-c877-4527-a8a5-6084b99b4f46.vsidx 246.24KB
  9. cc65/.vs/cc65/FileContentIndex/ece367dd-a7c2-420c-8080-57a1644a86ac.vsidx 285.16KB
  10. cc65/.vs/cc65/v17/
  11. cc65/.vs/cc65/v17/.suo 61.5KB
  12. cc65/.vs/cc65/v17/Browse.VC.db 5.05MB
  13. cc65/.vs/cc65/v17/DocumentLayout.backup.json 5.52KB
  14. cc65/.vs/cc65/v17/DocumentLayout.json 5.52KB
  15. cc65/.vs/cc65/v17/ipch/
  16. cc65/.vs/cc65/v17/ipch/AutoPCH/
  17. cc65/.vs/cc65/v17/ipch/AutoPCH/1429d8aeb81ce412/
  18. cc65/.vs/cc65/v17/ipch/AutoPCH/1429d8aeb81ce412/CMDLINE.ipch 4.06MB
  19. cc65/.vs/cc65/v17/ipch/AutoPCH/190b2936ca5db372/
  20. cc65/.vs/cc65/v17/ipch/AutoPCH/190b2936ca5db372/EXPORTS.ipch 3.06MB
  21. cc65/.vs/cc65/v17/ipch/AutoPCH/216a7fe9e76b1750/
  22. cc65/.vs/cc65/v17/ipch/AutoPCH/216a7fe9e76b1750/ABEND.ipch 4.06MB
  23. cc65/.vs/cc65/v17/ipch/AutoPCH/2d81274c9dac1e17/
  24. cc65/.vs/cc65/v17/ipch/AutoPCH/2d81274c9dac1e17/DECLATTR.ipch 4.06MB
  25. cc65/.vs/cc65/v17/ipch/AutoPCH/3605c63865470535/
  26. cc65/.vs/cc65/v17/ipch/AutoPCH/3605c63865470535/EXPR.ipch 5.06MB
  27. cc65/.vs/cc65/v17/ipch/AutoPCH/4e0c6fccaa7eb893/
  28. cc65/.vs/cc65/v17/ipch/AutoPCH/4e0c6fccaa7eb893/PARSER.ipch 5.06MB
  29. cc65/.vs/cc65/v17/ipch/AutoPCH/4e4145e50f95a1da/
  30. cc65/.vs/cc65/v17/ipch/AutoPCH/4e4145e50f95a1da/SCANNER.ipch 4.81MB
  31. cc65/.vs/cc65/v17/ipch/AutoPCH/4e76a4fa061fab40/
  32. cc65/.vs/cc65/v17/ipch/AutoPCH/4e76a4fa061fab40/SCANNER.ipch 4.81MB
  33. cc65/.vs/cc65/v17/ipch/AutoPCH/6af0249923b31bfe/
  34. cc65/.vs/cc65/v17/ipch/AutoPCH/6af0249923b31bfe/GLOBAL.ipch 1.81MB
  35. cc65/.vs/cc65/v17/ipch/AutoPCH/6b67f16cf401f6fc/
  36. cc65/.vs/cc65/v17/ipch/AutoPCH/6b67f16cf401f6fc/DECLARE.ipch 4.56MB
  37. cc65/.vs/cc65/v17/ipch/AutoPCH/778123fa0d340bcb/
  38. cc65/.vs/cc65/v17/ipch/AutoPCH/778123fa0d340bcb/PARSER.ipch 4.81MB
  39. cc65/.vs/cc65/v17/ipch/AutoPCH/7b08575187a6f2a9/
  40. cc65/.vs/cc65/v17/ipch/AutoPCH/7b08575187a6f2a9/PARSER.ipch 4.81MB
  41. cc65/.vs/cc65/v17/ipch/AutoPCH/81b89b2504382f86/
  42. cc65/.vs/cc65/v17/ipch/AutoPCH/81b89b2504382f86/FUNCTION.ipch 4.06MB
  43. cc65/.vs/cc65/v17/ipch/AutoPCH/95db7087a447baf/
  44. cc65/.vs/cc65/v17/ipch/AutoPCH/95db7087a447baf/ASMSTMT.ipch 5.06MB
  45. cc65/.vs/cc65/v17/ipch/AutoPCH/af316df7dd827ba2/
  46. cc65/.vs/cc65/v17/ipch/AutoPCH/af316df7dd827ba2/DECLARE.ipch 4.56MB
  47. cc65/.vs/cc65/v17/ipch/AutoPCH/b06b83b708040c82/
  48. cc65/.vs/cc65/v17/ipch/AutoPCH/b06b83b708040c82/ADD.ipch 3.81MB
  49. cc65/.vs/cc65/v17/ipch/AutoPCH/be9834a59f2d879b/
  50. cc65/.vs/cc65/v17/ipch/AutoPCH/be9834a59f2d879b/PRINT.ipch 3.56MB
  51. cc65/.vs/cc65/v17/ipch/AutoPCH/c033457f36f4e7c8/
  52. cc65/.vs/cc65/v17/ipch/AutoPCH/c033457f36f4e7c8/XMALLOC.ipch 3.81MB
  53. cc65/.vs/cc65/v17/ipch/AutoPCH/c06014c585d6389f/
  54. cc65/.vs/cc65/v17/ipch/AutoPCH/c06014c585d6389f/COMPILE.ipch 5.31MB
  55. cc65/.vs/cc65/v17/ipch/AutoPCH/ce08071ef41f4022/
  56. cc65/.vs/cc65/v17/ipch/AutoPCH/e02abff3f530602a/
  57. cc65/.vs/cc65/v17/ipch/AutoPCH/e02abff3f530602a/OBJFILE.ipch 4.06MB
  58. cc65/.vs/cc65/v17/ipch/AutoPCH/e3ca3694a1476334/
  59. cc65/.vs/cc65/v17/ipch/AutoPCH/e3ca3694a1476334/MAIN.ipch 4.56MB
  60. cc65/.vs/cc65/v17/ipch/AutoPCH/fdb672557e4c9ee3/
  61. cc65/.vs/cc65/v17/ipch/AutoPCH/fdb672557e4c9ee3/FILEIO.ipch 3.81MB
  62. cc65/.vs/cc65/v17/Solution.VC.db 1.12MB
  63. cc65/ar65/
  64. cc65/ar65/.editorconfig 3.31KB
  65. cc65/ar65/add.c 3.29KB
  66. cc65/ar65/add.h 2.77KB
  67. cc65/ar65/ar65.vcxproj 8.08KB
  68. cc65/ar65/ar65.vcxproj.filters 2.85KB
  69. cc65/ar65/ar65.vcxproj.user 168B
  70. cc65/ar65/del.c 3.32KB
  71. cc65/ar65/del.h 2.78KB
  72. cc65/ar65/error.c 3.46KB
  73. cc65/ar65/error.h 3.05KB
  74. cc65/ar65/exports.c 5.11KB
  75. cc65/ar65/exports.h 3KB
  76. cc65/ar65/extract.c 3.32KB
  77. cc65/ar65/extract.h 2.8KB
  78. cc65/ar65/fileio.c 5.83KB
  79. cc65/ar65/fileio.h 3.67KB
  80. cc65/ar65/global.c 2.65KB
  81. cc65/ar65/global.h 2.7KB
  82. cc65/ar65/library.c 12.85KB
  83. cc65/ar65/library.h 3.66KB
  84. cc65/ar65/list.c 3.31KB
  85. cc65/ar65/list.h 2.77KB
  86. cc65/ar65/main.c 4.04KB
  87. cc65/ar65/make/
  88. cc65/ar65/make/gcc.mak 910B
  89. cc65/ar65/make/sc.mak 1.36KB
  90. cc65/ar65/make/watcom.mak 1.72KB
  91. cc65/ar65/objdata.c 5.84KB
  92. cc65/ar65/objdata.h 4.56KB
  93. cc65/ar65/objfile.c 8.47KB
  94. cc65/ar65/objfile.h 3.12KB
  95. cc65/ar65/x64/
  96. cc65/ar65/x64/Debug/
  97. cc65/ar65/x64/Debug/add.obj 7.77KB
  98. cc65/ar65/x64/Debug/ar65.Build.CppClean.log 1.4KB
  99. cc65/ar65/x64/Debug/ar65.exe.recipe 287B
  100. cc65/ar65/x64/Debug/ar65.ilk 842.84KB
  101. cc65/ar65/x64/Debug/ar65.lib.recipe 152B
  102. cc65/ar65/x64/Debug/ar65.log 868B
  103. cc65/ar65/x64/Debug/ar65.tlog/
  104. cc65/ar65/x64/Debug/ar65.tlog/ar65.lastbuildstate 155B
  105. cc65/ar65/x64/Debug/ar65.tlog/CL.command.1.tlog 8.84KB
  106. cc65/ar65/x64/Debug/ar65.tlog/Cl.items.tlog 1.08KB
  107. cc65/ar65/x64/Debug/ar65.tlog/CL.read.1.tlog 35.35KB
  108. cc65/ar65/x64/Debug/ar65.tlog/CL.write.1.tlog 4.56KB
  109. cc65/ar65/x64/Debug/ar65.tlog/link.command.1.tlog 2.92KB
  110. cc65/ar65/x64/Debug/ar65.tlog/link.read.1.tlog 5.73KB
  111. cc65/ar65/x64/Debug/ar65.tlog/link.secondary.1.tlog 718B
  112. cc65/ar65/x64/Debug/ar65.tlog/link.write.1.tlog 1.48KB
  113. cc65/ar65/x64/Debug/ar65.vcxproj.FileListAbsolute.txt
  114. cc65/ar65/x64/Debug/del.obj 7.6KB
  115. cc65/ar65/x64/Debug/error.obj 16.01KB
  116. cc65/ar65/x64/Debug/exports.obj 9.71KB
  117. cc65/ar65/x64/Debug/extract.obj 7.83KB
  118. cc65/ar65/x64/Debug/fileio.obj 18.33KB
  119. cc65/ar65/x64/Debug/global.obj 1.23KB
  120. cc65/ar65/x64/Debug/library.obj 32.89KB
  121. cc65/ar65/x64/Debug/list.obj 11.6KB
  122. cc65/ar65/x64/Debug/main.obj 17.05KB
  123. cc65/ar65/x64/Debug/objdata.obj 13.88KB
  124. cc65/ar65/x64/Debug/objfile.obj 25.29KB
  125. cc65/ar65/x64/Debug/vc143.idb 123KB
  126. cc65/ar65/x64/Debug/vc143.pdb 84KB
  127. cc65/ca65/
  128. cc65/ca65/ca65.vcxproj 8.96KB
  129. cc65/ca65/ca65.vcxproj.filters 5.54KB
  130. cc65/ca65/ca65.vcxproj.user 168B
  131. cc65/ca65/condasm.c 11.41KB
  132. cc65/ca65/condasm.h 3.08KB
  133. cc65/ca65/dbginfo.c 4.44KB
  134. cc65/ca65/dbginfo.h 2.98KB
  135. cc65/ca65/ea.c 5.49KB
  136. cc65/ca65/ea.h 3.11KB
  137. cc65/ca65/error.c 8.72KB
  138. cc65/ca65/error.h 6.33KB
  139. cc65/ca65/expr.c 35.29KB
  140. cc65/ca65/expr.h 4.84KB
  141. cc65/ca65/feature.c 4.61KB
  142. cc65/ca65/feature.h 3.63KB
  143. cc65/ca65/filetab.c 6.79KB
  144. cc65/ca65/filetab.h 3.14KB
  145. cc65/ca65/fragment.c 2.73KB
  146. cc65/ca65/fragment.h 3.66KB
  147. cc65/ca65/global.c 4.11KB
  148. cc65/ca65/global.h 4.25KB
  149. cc65/ca65/incpath.c 5.55KB
  150. cc65/ca65/incpath.h 2.97KB
  151. cc65/ca65/instr.c 23.13KB
  152. cc65/ca65/instr.h 6.1KB
  153. cc65/ca65/istack.c 4.94KB
  154. cc65/ca65/istack.h 3.26KB
  155. cc65/ca65/lineinfo.c 6.78KB
  156. cc65/ca65/lineinfo.h 4.59KB
  157. cc65/ca65/listing.c 11.88KB
  158. cc65/ca65/listing.h 4.54KB
  159. cc65/ca65/macpack.c 6.73KB
  160. cc65/ca65/macpack.h 3.14KB
  161. cc65/ca65/macro.c 19.86KB
  162. cc65/ca65/macro.h 3.42KB
  163. cc65/ca65/main.c 16.71KB
  164. cc65/ca65/make/
  165. cc65/ca65/make/gcc.mak 1.23KB
  166. cc65/ca65/make/sc.mak 4.15KB
  167. cc65/ca65/make/watcom.mak 1.95KB
  168. cc65/ca65/nexttok.c 11.82KB
  169. cc65/ca65/nexttok.h 3.59KB
  170. cc65/ca65/objcode.c 19.21KB
  171. cc65/ca65/objcode.h 5.55KB
  172. cc65/ca65/objfile.c 9.13KB
  173. cc65/ca65/objfile.h 4.54KB
  174. cc65/ca65/options.c 5.32KB
  175. cc65/ca65/options.h 3.27KB
  176. cc65/ca65/pseudo.c 31.85KB
  177. cc65/ca65/pseudo.h 3.31KB
  178. cc65/ca65/repeat.c 5.57KB
  179. cc65/ca65/repeat.h 2.77KB
  180. cc65/ca65/scanner.c 25.57KB
  181. cc65/ca65/scanner.h 7.88KB
  182. cc65/ca65/symentry.h 2.8KB
  183. cc65/ca65/symtab.c 31.66KB
  184. cc65/ca65/symtab.h 5.67KB
  185. cc65/ca65/toklist.c 6.89KB
  186. cc65/ca65/toklist.h 4.96KB
  187. cc65/ca65/ulabel.c 7.62KB
  188. cc65/ca65/ulabel.h 3.55KB
  189. cc65/ca65/x64/
  190. cc65/ca65/x64/Debug/
  191. cc65/ca65/x64/Debug/ca65.Build.CppClean.log 2.19KB
  192. cc65/ca65/x64/Debug/ca65.exe.recipe 287B
  193. cc65/ca65/x64/Debug/ca65.ilk 1.32MB
  194. cc65/ca65/x64/Debug/ca65.log 11.59KB
  195. cc65/ca65/x64/Debug/ca65.tlog/
  196. cc65/ca65/x64/Debug/ca65.tlog/ca65.lastbuildstate 155B
  197. cc65/ca65/x64/Debug/ca65.tlog/CL.command.1.tlog 18.06KB
  198. cc65/ca65/x64/Debug/ca65.tlog/Cl.items.tlog 2.46KB
  199. cc65/ca65/x64/Debug/ca65.tlog/CL.read.1.tlog 85.43KB
  200. cc65/ca65/x64/Debug/ca65.tlog/CL.write.1.tlog 10.11KB
  201. cc65/ca65/x64/Debug/ca65.tlog/link.command.1.tlog 5.13KB
  202. cc65/ca65/x64/Debug/ca65.tlog/link.read.1.tlog 8.86KB
  203. cc65/ca65/x64/Debug/ca65.tlog/link.secondary.1.tlog 1.47KB
  204. cc65/ca65/x64/Debug/ca65.tlog/link.write.1.tlog 3.03KB
  205. cc65/ca65/x64/Debug/ca65.vcxproj.FileListAbsolute.txt
  206. cc65/ca65/x64/Debug/condasm.obj 26.03KB
  207. cc65/ca65/x64/Debug/dbginfo.obj 11.14KB
  208. cc65/ca65/x64/Debug/ea.obj 6.66KB
  209. cc65/ca65/x64/Debug/error.obj 45.29KB
  210. cc65/ca65/x64/Debug/expr.obj 75.58KB
  211. cc65/ca65/x64/Debug/feature.obj 10.24KB
  212. cc65/ca65/x64/Debug/filetab.obj 13.75KB
  213. cc65/ca65/x64/Debug/fragment.obj 1.86KB
  214. cc65/ca65/x64/Debug/global.obj 2.92KB
  215. cc65/ca65/x64/Debug/incpath.obj 12.06KB
  216. cc65/ca65/x64/Debug/instr.obj 35.19KB
  217. cc65/ca65/x64/Debug/istack.obj 10.34KB
  218. cc65/ca65/x64/Debug/lineinfo.obj 12.85KB
  219. cc65/ca65/x64/Debug/listing.obj 34.19KB
  220. cc65/ca65/x64/Debug/macpack.obj 7.92KB
  221. cc65/ca65/x64/Debug/macro.obj 36.76KB
  222. cc65/ca65/x64/Debug/main.obj 62.37KB
  223. cc65/ca65/x64/Debug/nexttok.obj 31.22KB
  224. cc65/ca65/x64/Debug/objcode.obj 52.31KB
  225. cc65/ca65/x64/Debug/objfile.obj 34.52KB
  226. cc65/ca65/x64/Debug/options.obj 15.08KB
  227. cc65/ca65/x64/Debug/pseudo.obj 102.9KB
  228. cc65/ca65/x64/Debug/repeat.obj 10.94KB
  229. cc65/ca65/x64/Debug/scanner.obj 70.29KB
  230. cc65/ca65/x64/Debug/symtab.obj 62.62KB
  231. cc65/ca65/x64/Debug/toklist.obj 17.99KB
  232. cc65/ca65/x64/Debug/ulabel.obj 14.53KB
  233. cc65/ca65/x64/Debug/vc143.idb 203KB
  234. cc65/ca65/x64/Debug/vc143.pdb 116KB
  235. cc65/cc65/
  236. cc65/cc65/.lclintrc 54B
  237. cc65/cc65/anonname.c 3.4KB
  238. cc65/cc65/anonname.h 2.99KB
  239. cc65/cc65/asmcode.c 4.04KB
  240. cc65/cc65/asmcode.h 3.43KB
  241. cc65/cc65/asmlabel.c 3.12KB
  242. cc65/cc65/asmlabel.h 2.97KB
  243. cc65/cc65/asmstmt.c 11.01KB
  244. cc65/cc65/asmstmt.h 2.96KB
  245. cc65/cc65/assignment.c 6.64KB
  246. cc65/cc65/assignment.h 2.89KB
  247. cc65/cc65/casenode.c 5.63KB
  248. cc65/cc65/casenode.h 4.68KB
  249. cc65/cc65/cc65.vcxproj 11.84KB
  250. cc65/cc65/cc65.vcxproj.filters 12.09KB
  251. cc65/cc65/cc65.vcxproj.user 168B
  252. cc65/cc65/codeent.c 27.96KB
  253. cc65/cc65/codeent.h 7.5KB
  254. cc65/cc65/codegen.c 102.72KB
  255. cc65/cc65/codegen.h 15.75KB
  256. cc65/cc65/codeinfo.c 26.06KB
  257. cc65/cc65/codeinfo.h 6.56KB
  258. cc65/cc65/codelab.c 4.41KB
  259. cc65/cc65/codelab.h 4.5KB
  260. cc65/cc65/codeopt.c 55.72KB
  261. cc65/cc65/codeopt.h 3.01KB
  262. cc65/cc65/codeseg.c 42.31KB
  263. cc65/cc65/codeseg.h 10.55KB
  264. cc65/cc65/compile.c 10.18KB
  265. cc65/cc65/compile.h 2.79KB
  266. cc65/cc65/coptadd.c 13.02KB
  267. cc65/cc65/coptadd.h 4.16KB
  268. cc65/cc65/coptc02.c 7.49KB
  269. cc65/cc65/coptc02.h 3.03KB
  270. cc65/cc65/coptcmp.c 22.18KB
  271. cc65/cc65/coptcmp.h 4.72KB
  272. cc65/cc65/coptind.c 36.02KB
  273. cc65/cc65/coptind.h 4.92KB
  274. cc65/cc65/coptneg.c 10.22KB
  275. cc65/cc65/coptneg.h 4.11KB
  276. cc65/cc65/coptpush.c 5.45KB
  277. cc65/cc65/coptpush.h 3.19KB
  278. cc65/cc65/coptsize.c 12.97KB
  279. cc65/cc65/coptsize.h 3.22KB
  280. cc65/cc65/coptstop.c 26.32KB
  281. cc65/cc65/coptstop.h 2.86KB
  282. cc65/cc65/coptstore.c 9.91KB
  283. cc65/cc65/coptstore.h 3.24KB
  284. cc65/cc65/coptsub.c 5.54KB
  285. cc65/cc65/coptsub.h 3.23KB
  286. cc65/cc65/copttest.c 4.62KB
  287. cc65/cc65/copttest.h 3.13KB
  288. cc65/cc65/copyleft.jrd 1.3KB
  289. cc65/cc65/cpu.c 2.67KB
  290. cc65/cc65/cpu.h 2.79KB
  291. cc65/cc65/dataseg.c 4.5KB
  292. cc65/cc65/dataseg.h 3.8KB
  293. cc65/cc65/datatype.c 16.55KB
  294. cc65/cc65/datatype.h 14.77KB
  295. cc65/cc65/declare.c 28.93KB
  296. cc65/cc65/declare.h 4.48KB
  297. cc65/cc65/declattr.c 6.65KB
  298. cc65/cc65/declattr.h 3.49KB
  299. cc65/cc65/error.c 6.07KB
  300. cc65/cc65/error.h 3.85KB
  301. cc65/cc65/expr.c 89.01KB
  302. cc65/cc65/expr.h 3.06KB
  303. cc65/cc65/exprdesc.c 4.92KB
  304. cc65/cc65/exprdesc.h 5.1KB
  305. cc65/cc65/exprheap.c 7.03KB
  306. cc65/cc65/exprheap.h 3.52KB
  307. cc65/cc65/exprnode.c 9.28KB
  308. cc65/cc65/exprnode.h 9.21KB
  309. cc65/cc65/funcdesc.c 3.22KB
  310. cc65/cc65/funcdesc.h 4.21KB
  311. cc65/cc65/function.c 13.43KB
  312. cc65/cc65/function.h 4.71KB
  313. cc65/cc65/global.c 3.88KB
  314. cc65/cc65/global.h 3.96KB
  315. cc65/cc65/goto.c 3.45KB
  316. cc65/cc65/goto.h 2.79KB
  317. cc65/cc65/hexval.c 3.08KB
  318. cc65/cc65/hexval.h 2.89KB
  319. cc65/cc65/ident.c 2.83KB
  320. cc65/cc65/ident.h 3.17KB
  321. cc65/cc65/incpath.c 6.35KB
  322. cc65/cc65/incpath.h 3.39KB
  323. cc65/cc65/input.c 12.46KB
  324. cc65/cc65/input.h 4.5KB
  325. cc65/cc65/lineinfo.c 5.63KB
  326. cc65/cc65/lineinfo.h 4.36KB
  327. cc65/cc65/litpool.c 5.59KB
  328. cc65/cc65/litpool.h 4.05KB
  329. cc65/cc65/locals.c 15.83KB
  330. cc65/cc65/locals.h 3.14KB
  331. cc65/cc65/loop.c 3.69KB
  332. cc65/cc65/loop.h 3.32KB
  333. cc65/cc65/macrotab.c 9.26KB
  334. cc65/cc65/macrotab.h 5.02KB
  335. cc65/cc65/main.c 20.33KB
  336. cc65/cc65/make/
  337. cc65/cc65/make/cc65.mak 991B
  338. cc65/cc65/make/gcc.mak 2.2KB
  339. cc65/cc65/make/sc.mak 13.08KB
  340. cc65/cc65/make/watcom.mak 2.59KB
  341. cc65/cc65/opcodes.c 33.66KB
  342. cc65/cc65/opcodes.h 8.07KB
  343. cc65/cc65/parser.c 35.83KB
  344. cc65/cc65/parser.h 2.9KB
  345. cc65/cc65/pragma.c 10.41KB
  346. cc65/cc65/pragma.h 2.8KB
  347. cc65/cc65/preproc.c 24.88KB
  348. cc65/cc65/preproc.h 666B
  349. cc65/cc65/reginfo.c 3.83KB
  350. cc65/cc65/reginfo.h 4.39KB
  351. cc65/cc65/scanner.c 20.94KB
  352. cc65/cc65/scanner.h 6.5KB
  353. cc65/cc65/scanstrbuf.c 8.48KB
  354. cc65/cc65/scanstrbuf.h 3.59KB
  355. cc65/cc65/segments.c 7.13KB
  356. cc65/cc65/segments.h 5.05KB
  357. cc65/cc65/stdfunc.c 10.41KB
  358. cc65/cc65/stdfunc.h 3.01KB
  359. cc65/cc65/stmt.c 13.49KB
  360. cc65/cc65/stmt.h 3.24KB
  361. cc65/cc65/swstmt.c 8.63KB
  362. cc65/cc65/swstmt.h 2.79KB
  363. cc65/cc65/symentry.c 5.96KB
  364. cc65/cc65/symentry.h 7.43KB
  365. cc65/cc65/symtab.c 22.15KB
  366. cc65/cc65/symtab.h 6.84KB
  367. cc65/cc65/textseg.c 4.15KB
  368. cc65/cc65/textseg.h 3.76KB
  369. cc65/cc65/typecast.c 7.79KB
  370. cc65/cc65/typecast.h 2.99KB
  371. cc65/cc65/typecmp.c 11.3KB
  372. cc65/cc65/typecmp.h 3.45KB
  373. cc65/cc65/util.c 3.16KB
  374. cc65/cc65/util.h 2.85KB
  375. cc65/cc65/x64/
  376. cc65/cc65/x64/Debug/
  377. cc65/cc65/x64/Debug/anonname.obj 12.63KB
  378. cc65/cc65/x64/Debug/asmcode.obj 12.72KB
  379. cc65/cc65/x64/Debug/asmlabel.obj 11.08KB
  380. cc65/cc65/x64/Debug/asmstmt.obj 30.85KB
  381. cc65/cc65/x64/Debug/assignment.obj 12.43KB
  382. cc65/cc65/x64/Debug/casenode.obj 11.54KB
  383. cc65/cc65/x64/Debug/cc65.Build.CppClean.log 4.21KB
  384. cc65/cc65/x64/Debug/cc65.exe.recipe 287B
  385. cc65/cc65/x64/Debug/cc65.ilk 2.04MB
  386. cc65/cc65/x64/Debug/cc65.log 18.34KB
  387. cc65/cc65/x64/Debug/cc65.tlog/
  388. cc65/cc65/x64/Debug/cc65.tlog/cc65.lastbuildstate 155B
  389. cc65/cc65/x64/Debug/cc65.tlog/CL.command.1.tlog 43.65KB
  390. cc65/cc65/x64/Debug/cc65.tlog/Cl.items.tlog 6.02KB
  391. cc65/cc65/x64/Debug/cc65.tlog/CL.read.1.tlog 252.87KB
  392. cc65/cc65/x64/Debug/cc65.tlog/CL.write.1.tlog 24.29KB
  393. cc65/cc65/x64/Debug/cc65.tlog/link.command.1.tlog 10.83KB
  394. cc65/cc65/x64/Debug/cc65.tlog/link.read.1.tlog 16.85KB
  395. cc65/cc65/x64/Debug/cc65.tlog/link.secondary.1.tlog 3.46KB
  396. cc65/cc65/x64/Debug/cc65.tlog/link.write.1.tlog 6.99KB
  397. cc65/cc65/x64/Debug/cc65.vcxproj.FileListAbsolute.txt
  398. cc65/cc65/x64/Debug/codeent.obj 59.53KB
  399. cc65/cc65/x64/Debug/codegen.obj 228.71KB
  400. cc65/cc65/x64/Debug/codeinfo.obj 57.16KB
  401. cc65/cc65/x64/Debug/codelab.obj 17.3KB
  402. cc65/cc65/x64/Debug/codeopt.obj 110.62KB
  403. cc65/cc65/x64/Debug/codeseg.obj 81.92KB
  404. cc65/cc65/x64/Debug/compile.obj 26.44KB
  405. cc65/cc65/x64/Debug/coptadd.obj 24.71KB
  406. cc65/cc65/x64/Debug/coptc02.obj 20.44KB
  407. cc65/cc65/x64/Debug/coptcmp.obj 41.42KB
  408. cc65/cc65/x64/Debug/coptind.obj 41.82KB
  409. cc65/cc65/x64/Debug/coptneg.obj 22.7KB
  410. cc65/cc65/x64/Debug/coptpush.obj 14.5KB
  411. cc65/cc65/x64/Debug/coptsize.obj 33.05KB
  412. cc65/cc65/x64/Debug/coptstop.obj 45.38KB
  413. cc65/cc65/x64/Debug/coptstore.obj 18.59KB
  414. cc65/cc65/x64/Debug/coptsub.obj 13.49KB
  415. cc65/cc65/x64/Debug/copttest.obj 11.81KB
  416. cc65/cc65/x64/Debug/cpu.obj 1.4KB
  417. cc65/cc65/x64/Debug/dataseg.obj 18.37KB
  418. cc65/cc65/x64/Debug/datatype.obj 63.8KB
  419. cc65/cc65/x64/Debug/declare.obj 55.8KB
  420. cc65/cc65/x64/Debug/declattr.obj 16.03KB
  421. cc65/cc65/x64/Debug/error.obj 30.13KB
  422. cc65/cc65/x64/Debug/expr.obj 137.98KB
  423. cc65/cc65/x64/Debug/exprdesc.obj 19.38KB
  424. cc65/cc65/x64/Debug/exprheap.obj 15.63KB
  425. cc65/cc65/x64/Debug/exprnode.obj 38.88KB
  426. cc65/cc65/x64/Debug/funcdesc.obj 5.54KB
  427. cc65/cc65/x64/Debug/function.obj 31.68KB
  428. cc65/cc65/x64/Debug/global.obj 2.82KB
  429. cc65/cc65/x64/Debug/goto.obj 9.83KB
  430. cc65/cc65/x64/Debug/hexval.obj 5.63KB
  431. cc65/cc65/x64/Debug/ident.obj 4.88KB
  432. cc65/cc65/x64/Debug/incpath.obj 15.15KB
  433. cc65/cc65/x64/Debug/input.obj 34.07KB
  434. cc65/cc65/x64/Debug/lineinfo.obj 17.38KB
  435. cc65/cc65/x64/Debug/litpool.obj 23.19KB
  436. cc65/cc65/x64/Debug/locals.obj 25.63KB
  437. cc65/cc65/x64/Debug/loop.obj 7.04KB
  438. cc65/cc65/x64/Debug/macrotab.obj 29.93KB
  439. cc65/cc65/x64/Debug/main.obj 76.32KB
  440. cc65/cc65/x64/Debug/opcodes.obj 30.59KB
  441. cc65/cc65/x64/Debug/parser.obj 15.4KB
  442. cc65/cc65/x64/Debug/pragma.obj 32.59KB
  443. cc65/cc65/x64/Debug/preproc.obj 61.09KB
  444. cc65/cc65/x64/Debug/reginfo.obj 7.75KB
  445. cc65/cc65/x64/Debug/scanner.obj 57.09KB
  446. cc65/cc65/x64/Debug/scanstrbuf.obj 19.85KB
  447. cc65/cc65/x64/Debug/segments.obj 29.36KB
  448. cc65/cc65/x64/Debug/stdfunc.obj 23.55KB
  449. cc65/cc65/x64/Debug/stmt.obj 32.63KB
  450. cc65/cc65/x64/Debug/swstmt.obj 16.99KB
  451. cc65/cc65/x64/Debug/symentry.obj 22.97KB
  452. cc65/cc65/x64/Debug/symtab.obj 59.78KB
  453. cc65/cc65/x64/Debug/textseg.obj 16.86KB
  454. cc65/cc65/x64/Debug/typecast.obj 13.14KB
  455. cc65/cc65/x64/Debug/typecmp.obj 15.88KB
  456. cc65/cc65/x64/Debug/util.obj 3.03KB
  457. cc65/cc65/x64/Debug/vc143.idb 291KB
  458. cc65/cc65/x64/Debug/vc143.pdb 148KB
  459. cc65/cc65.sln 5.03KB
  460. cc65/cl65/
  461. cc65/cl65/cl65.vcxproj 7.16KB
  462. cc65/cl65/cl65.vcxproj.filters 1.15KB
  463. cc65/cl65/cl65.vcxproj.user 168B
  464. cc65/cl65/error.c 3.57KB
  465. cc65/cl65/error.h 2.94KB
  466. cc65/cl65/global.c 2.72KB
  467. cc65/cl65/global.h 2.77KB
  468. cc65/cl65/main.c 29.7KB
  469. cc65/cl65/make/
  470. cc65/cl65/make/gcc.mak 856B
  471. cc65/cl65/make/sc.mak 513B
  472. cc65/cl65/make/watcom.mak 1.59KB
  473. cc65/cl65/spawn-amiga.inc 3.59KB
  474. cc65/cl65/spawn-unix.inc 4.26KB
  475. cc65/cl65/spawn.h 3.33KB
  476. cc65/cl65/x64/
  477. cc65/cl65/x64/Debug/
  478. cc65/cl65/x64/Debug/cl65.Build.CppClean.log 959B
  479. cc65/cl65/x64/Debug/cl65.exe.recipe 287B
  480. cc65/cl65/x64/Debug/cl65.ilk 796.48KB
  481. cc65/cl65/x64/Debug/cl65.log 2.16KB
  482. cc65/cl65/x64/Debug/cl65.tlog/
  483. cc65/cl65/x64/Debug/cl65.tlog/CL.command.1.tlog 1.99KB
  484. cc65/cl65/x64/Debug/cl65.tlog/Cl.items.tlog 273B
  485. cc65/cl65/x64/Debug/cl65.tlog/CL.read.1.tlog 8.87KB
  486. cc65/cl65/x64/Debug/cl65.tlog/CL.write.1.tlog 1.29KB
  487. cc65/cl65/x64/Debug/cl65.tlog/cl65.lastbuildstate 155B
  488. cc65/cl65/x64/Debug/cl65.tlog/link.command.1.tlog 1.63KB
  489. cc65/cl65/x64/Debug/cl65.tlog/link.read.1.tlog 3.9KB
  490. cc65/cl65/x64/Debug/cl65.tlog/link.secondary.1.tlog 253B
  491. cc65/cl65/x64/Debug/cl65.tlog/link.write.1.tlog 590B
  492. cc65/cl65/x64/Debug/cl65.vcxproj.FileListAbsolute.txt
  493. cc65/cl65/x64/Debug/error.obj 16.32KB
  494. cc65/cl65/x64/Debug/global.obj 1.38KB
  495. cc65/cl65/x64/Debug/main.obj 84.56KB
  496. cc65/cl65/x64/Debug/vc143.idb 91KB
  497. cc65/cl65/x64/Debug/vc143.pdb 84KB
  498. cc65/common/
  499. cc65/common/abend.c 3.2KB
  500. cc65/common/abend.h 2.9KB
  501. cc65/common/attrib.h 2.8KB
  502. cc65/common/bitops.c 3.25KB
  503. cc65/common/bitops.h 3.34KB
  504. cc65/common/cddefs.h 3.75KB
  505. cc65/common/chartype.c 4.35KB
  506. cc65/common/chartype.h 4.04KB
  507. cc65/common/check.c 3.68KB
  508. cc65/common/check.h 4.11KB
  509. cc65/common/cmdline.c 8.96KB
  510. cc65/common/cmdline.h 4.26KB
  511. cc65/common/coll.c 11.71KB
  512. cc65/common/coll.h 9.08KB
  513. cc65/common/common.vcxproj 8.46KB
  514. cc65/common/common.vcxproj.filters 4.62KB
  515. cc65/common/common.vcxproj.user 168B
  516. cc65/common/exprdefs.c 4.87KB
  517. cc65/common/exprdefs.h 6.2KB
  518. cc65/common/filepos.c 2.8KB
  519. cc65/common/filepos.h 3.19KB
  520. cc65/common/fname.c 3.92KB
  521. cc65/common/fname.h 3.15KB
  522. cc65/common/hashstr.c 2.86KB
  523. cc65/common/hashstr.h 2.83KB
  524. cc65/common/inline.h 2.79KB
  525. cc65/common/libdefs.h 3.18KB
  526. cc65/common/make/
  527. cc65/common/make/gcc.mak 958B
  528. cc65/common/make/sc.mak 1.19KB
  529. cc65/common/make/watcom.mak 1.51KB
  530. cc65/common/matchpat.c 7.15KB
  531. cc65/common/matchpat.h 3.22KB
  532. cc65/common/objdefs.h 4.06KB
  533. cc65/common/optdefs.h 3.61KB
  534. cc65/common/print.c 3.35KB
  535. cc65/common/print.h 3.13KB
  536. cc65/common/segdefs.c 3.75KB
  537. cc65/common/segdefs.h 4.5KB
  538. cc65/common/strbuf.c 7.26KB
  539. cc65/common/strbuf.h 9.04KB
  540. cc65/common/strutil.c 3.16KB
  541. cc65/common/strutil.h 3KB
  542. cc65/common/symdefs.h 4.42KB
  543. cc65/common/target.c 3.79KB
  544. cc65/common/target.h 3.58KB
  545. cc65/common/tgttrans.c 10.8KB
  546. cc65/common/tgttrans.h 3.31KB
  547. cc65/common/version.h 2.03KB
  548. cc65/common/x64/
  549. cc65/common/x64/Debug/
  550. cc65/common/x64/Debug/abend.obj 12.58KB
  551. cc65/common/x64/Debug/bitops.obj 8.29KB
  552. cc65/common/x64/Debug/chartype.obj 13.63KB
  553. cc65/common/x64/Debug/check.obj 7.37KB
  554. cc65/common/x64/Debug/cmdline.obj 19.82KB
  555. cc65/common/x64/Debug/coll.obj 31.88KB
  556. cc65/common/x64/Debug/common.Build.CppClean.log 1.68KB
  557. cc65/common/x64/Debug/common.lib.recipe 152B
  558. cc65/common/x64/Debug/common.log 1.72KB
  559. cc65/common/x64/Debug/common.tlog/
  560. cc65/common/x64/Debug/common.tlog/CL.command.1.tlog 13.88KB
  561. cc65/common/x64/Debug/common.tlog/Cl.items.tlog 1.82KB
  562. cc65/common/x64/Debug/common.tlog/CL.read.1.tlog 43.04KB
  563. cc65/common/x64/Debug/common.tlog/CL.write.1.tlog 7.27KB
  564. cc65/common/x64/Debug/common.tlog/common.lastbuildstate 155B
  565. cc65/common/x64/Debug/common.tlog/Lib-link.read.1.tlog 4.25KB
  566. cc65/common/x64/Debug/common.tlog/Lib-link.write.1.tlog 2.12KB
  567. cc65/common/x64/Debug/common.tlog/Lib.command.1.tlog 3.01KB
  568. cc65/common/x64/Debug/common.vcxproj.FileListAbsolute.txt
  569. cc65/common/x64/Debug/exprdefs.obj 18.25KB
  570. cc65/common/x64/Debug/filepos.obj 3.01KB
  571. cc65/common/x64/Debug/fname.obj 7.49KB
  572. cc65/common/x64/Debug/hashstr.obj 2.88KB
  573. cc65/common/x64/Debug/matchpat.obj 10.12KB
  574. cc65/common/x64/Debug/print.obj 9.11KB
  575. cc65/common/x64/Debug/segdefs.obj 9.73KB
  576. cc65/common/x64/Debug/strbuf.obj 22.01KB
  577. cc65/common/x64/Debug/strutil.obj 7.07KB
  578. cc65/common/x64/Debug/target.obj 11.12KB
  579. cc65/common/x64/Debug/tgttrans.obj 15.51KB
  580. cc65/common/x64/Debug/xmalloc.obj 10.84KB
  581. cc65/common/x64/Debug/xsprintf.obj 12.52KB
  582. cc65/common/xmalloc.c 3.1KB
  583. cc65/common/xmalloc.h 3.09KB
  584. cc65/common/xsprintf.c 3.48KB
  585. cc65/common/xsprintf.h 3.06KB
  586. cc65/ld65/
  587. cc65/ld65/apple2.inc 876B
  588. cc65/ld65/atari.inc 885B
  589. cc65/ld65/atmos.inc 905B
  590. cc65/ld65/bbc.inc 706B
  591. cc65/ld65/bin.c 8.37KB
  592. cc65/ld65/bin.h 3.22KB
  593. cc65/ld65/binfmt.c 3.48KB
  594. cc65/ld65/binfmt.h 3.31KB
  595. cc65/ld65/c128.inc 967B
  596. cc65/ld65/c16.inc 775B
  597. cc65/ld65/c64.inc 798B
  598. cc65/ld65/cbm510.inc 950B
  599. cc65/ld65/cbm610.inc 700B
  600. cc65/ld65/cfg/
  601. cc65/ld65/cfg/apple2.cfg 802B
  602. cc65/ld65/cfg/atari.cfg 816B
  603. cc65/ld65/cfg/atmos.cfg 828B
  604. cc65/ld65/cfg/bbc.cfg 635B
  605. cc65/ld65/cfg/c128.cfg 899B
  606. cc65/ld65/cfg/c16.cfg 712B
  607. cc65/ld65/cfg/c64.cfg 727B
  608. cc65/ld65/cfg/cbm510.cfg 883B
  609. cc65/ld65/cfg/cbm610.cfg 634B
  610. cc65/ld65/cfg/cvt-cfg.pl 1.31KB
  611. cc65/ld65/cfg/geos.cfg 698B
  612. cc65/ld65/cfg/lunix.cfg 1.26KB
  613. cc65/ld65/cfg/module.cfg 490B
  614. cc65/ld65/cfg/nes.cfg 634B
  615. cc65/ld65/cfg/none.cfg 626B
  616. cc65/ld65/cfg/osa65.cfg 797B
  617. cc65/ld65/cfg/pet.cfg 713B
  618. cc65/ld65/cfg/plus4.cfg 884B
  619. cc65/ld65/cfg/vic20.cfg 729B
  620. cc65/ld65/condes.c 9.66KB
  621. cc65/ld65/condes.h 4.16KB
  622. cc65/ld65/config.c 40.37KB
  623. cc65/ld65/config.h 6.2KB
  624. cc65/ld65/dbginfo.c 3.74KB
  625. cc65/ld65/dbginfo.h 2.86KB
  626. cc65/ld65/dbgsyms.c 6.14KB
  627. cc65/ld65/dbgsyms.h 3.76KB
  628. cc65/ld65/error.c 3.46KB
  629. cc65/ld65/error.h 3.07KB
  630. cc65/ld65/exports.c 17.84KB
  631. cc65/ld65/exports.h 6.51KB
  632. cc65/ld65/expr.c 13.02KB
  633. cc65/ld65/expr.h 4.04KB
  634. cc65/ld65/extsyms.c 6.59KB
  635. cc65/ld65/extsyms.h 4.02KB
  636. cc65/ld65/fileinfo.c 3.36KB
  637. cc65/ld65/fileinfo.h 3.42KB
  638. cc65/ld65/fileio.c 7.23KB
  639. cc65/ld65/fileio.h 4.24KB
  640. cc65/ld65/fragment.c 3.56KB
  641. cc65/ld65/fragment.h 3.89KB
  642. cc65/ld65/geos.inc 762B
  643. cc65/ld65/global.c 3.25KB
  644. cc65/ld65/global.h 3.27KB
  645. cc65/ld65/ld65.vcxproj 8.7KB
  646. cc65/ld65/ld65.vcxproj.filters 4.69KB
  647. cc65/ld65/ld65.vcxproj.user 168B
  648. cc65/ld65/library.c 8.21KB
  649. cc65/ld65/library.h 2.84KB
  650. cc65/ld65/lineinfo.c 6.01KB
  651. cc65/ld65/lineinfo.h 3.91KB
  652. cc65/ld65/lunix.inc 1.38KB
  653. cc65/ld65/main.c 11.28KB
  654. cc65/ld65/make/
  655. cc65/ld65/make/gcc.mak 2.66KB
  656. cc65/ld65/make/sc.mak 4.3KB
  657. cc65/ld65/make/watcom.mak 1.9KB
  658. cc65/ld65/mapfile.c 6.24KB
  659. cc65/ld65/mapfile.h 2.88KB
  660. cc65/ld65/module.inc 566B
  661. cc65/ld65/none.inc 690B
  662. cc65/ld65/o65.c 36.21KB
  663. cc65/ld65/o65.h 4.51KB
  664. cc65/ld65/objdata.c 4.87KB
  665. cc65/ld65/objdata.h 4.99KB
  666. cc65/ld65/objfile.c 6.94KB
  667. cc65/ld65/objfile.h 3.5KB
  668. cc65/ld65/pet.inc 780B
  669. cc65/ld65/plus4.inc 954B
  670. cc65/ld65/scanner.c 11.52KB
  671. cc65/ld65/scanner.h 6.32KB
  672. cc65/ld65/segments.c 16.75KB
  673. cc65/ld65/segments.h 6.44KB
  674. cc65/ld65/tgtcfg.c 4.16KB
  675. cc65/ld65/tgtcfg.h 3.05KB
  676. cc65/ld65/vic20.inc 806B
  677. cc65/ld65/x64/
  678. cc65/ld65/x64/Debug/
  679. cc65/ld65/x64/Debug/bin.obj 25.1KB
  680. cc65/ld65/x64/Debug/binfmt.obj 3.9KB
  681. cc65/ld65/x64/Debug/condes.obj 28.48KB
  682. cc65/ld65/x64/Debug/config.obj 90.79KB
  683. cc65/ld65/x64/Debug/dbginfo.obj 11.72KB
  684. cc65/ld65/x64/Debug/dbgsyms.obj 20.04KB
  685. cc65/ld65/x64/Debug/error.obj 16.01KB
  686. cc65/ld65/x64/Debug/exports.obj 49.77KB
  687. cc65/ld65/x64/Debug/expr.obj 29.3KB
  688. cc65/ld65/x64/Debug/extsyms.obj 15.57KB
  689. cc65/ld65/x64/Debug/fileinfo.obj 7.72KB
  690. cc65/ld65/x64/Debug/fileio.obj 24.71KB
  691. cc65/ld65/x64/Debug/fragment.obj 6.25KB
  692. cc65/ld65/x64/Debug/global.obj 2.25KB
  693. cc65/ld65/x64/Debug/ld65.Build.CppClean.log 2.03KB
  694. cc65/ld65/x64/Debug/ld65.exe.recipe 287B
  695. cc65/ld65/x64/Debug/ld65.ilk 1.18MB
  696. cc65/ld65/x64/Debug/ld65.log 9.57KB
  697. cc65/ld65/x64/Debug/ld65.tlog/
  698. cc65/ld65/x64/Debug/ld65.tlog/CL.command.1.tlog 16.06KB
  699. cc65/ld65/x64/Debug/ld65.tlog/Cl.items.tlog 2.19KB
  700. cc65/ld65/x64/Debug/ld65.tlog/CL.read.1.tlog 82.11KB
  701. cc65/ld65/x64/Debug/ld65.tlog/CL.write.1.tlog 9.01KB
  702. cc65/ld65/x64/Debug/ld65.tlog/ld65.lastbuildstate 155B
  703. cc65/ld65/x64/Debug/ld65.tlog/link.command.1.tlog 4.7KB
  704. cc65/ld65/x64/Debug/ld65.tlog/link.read.1.tlog 8.24KB
  705. cc65/ld65/x64/Debug/ld65.tlog/link.secondary.1.tlog 1.32KB
  706. cc65/ld65/x64/Debug/ld65.tlog/link.write.1.tlog 2.73KB
  707. cc65/ld65/x64/Debug/ld65.vcxproj.FileListAbsolute.txt
  708. cc65/ld65/x64/Debug/library.obj 18.87KB
  709. cc65/ld65/x64/Debug/lineinfo.obj 13KB
  710. cc65/ld65/x64/Debug/main.obj 43.07KB
  711. cc65/ld65/x64/Debug/mapfile.obj 20.79KB
  712. cc65/ld65/x64/Debug/o65.obj 74.91KB
  713. cc65/ld65/x64/Debug/objdata.obj 12.85KB
  714. cc65/ld65/x64/Debug/objfile.obj 21.72KB
  715. cc65/ld65/x64/Debug/scanner.obj 41.11KB
  716. cc65/ld65/x64/Debug/segments.obj 44.53KB
  717. cc65/ld65/x64/Debug/tgtcfg.obj 16.2KB
  718. cc65/ld65/x64/Debug/vc143.idb 187KB
  719. cc65/ld65/x64/Debug/vc143.pdb 108KB
  720. cc65/x64/
  721. cc65/x64/Debug/
  722. cc65/x64/Debug/ar65.exe 92KB
  723. cc65/x64/Debug/ar65.pdb 1.07MB
  724. cc65/x64/Debug/ca65.exe 224.5KB
  725. cc65/x64/Debug/ca65.pdb 1.42MB
  726. cc65/x64/Debug/cc65.exe 478KB
  727. cc65/x64/Debug/cc65.pdb 2.03MB
  728. cc65/x64/Debug/cl65.exe 87.5KB
  729. cc65/x64/Debug/cl65.pdb 1020KB
  730. cc65/x64/Debug/common.idb 115KB
  731. cc65/x64/Debug/common.lib 244.17KB
  732. cc65/x64/Debug/common.pdb 92KB
  733. cc65/x64/Debug/ld65.exe 195KB
  734. cc65/x64/Debug/ld65.pdb 1.32MB
0评论
提交 加载更多评论
其他资源 2222021李鑫宇.zip
2222021李鑫宇.zip
2222021李鑫宇.zip 2222021李鑫宇.zip 2222021李鑫宇.zip
INA226软件IIC驱动.zip
INA226软件IIC驱动.zip
k8s文档解压即可使用
k8s文档
k8s文档解压即可使用 k8s文档解压即可使用 k8s文档解压即可使用
LArea的js与css
H5地区三级联动相关js与css
C# 将窗体嵌套进 TabControl 控件中
C# 将窗体嵌套进 TabControl 控件中
JMF608 开卡工具MP 版本V2.0
固态硬盘开卡工具 亲测有效
ESP32C3-SuperMini 的PlatformIO支持文件
super_mini_esp32c3.json 是板定义文件。它引用了下一个文件。 pins_arduino.h 是引脚定义文件。 复制到如下位置: Linux和MacOS: 1. '~/.platformio/platforms/espressif32/boards/super_mini_esp32c3.json' 2. '~/.platformio/packages/framework-arduinoespressif32/variants/super_mini_esp32c3/pins_arduino.h' Windows: 1. `%HOMEPATH%\.platformio\platforms\espressif32\boards\super_mini_esp32c3.json` 2. `%HOMEPATH%\.platformio\packages/framework-arduinoespressif32/variants/super_mini_esp32c3/pins_arduino.h`
[教务通24-132]关于2024级《体育与健康1》课程选项课选课的通知.zip
[教务通24-132]关于2024级《体育与健康1》课程选项课选课的通知.zip
[教务通24-132]关于2024级《体育与健康1》课程选项课选课的通知.zip [教务通24-132]关于2024级《体育与健康1》课程选项课选课的通知.zip [教务通24-132]关于2024级《体育与健康1》课程选项课选课的通知.zip