# 全能反编译器 **Repository Path**: zeng_ge/zg-disassembler ## Basic Information - **Project Name**: 全能反编译器 - **Description**: 用C#写的一个反编译器,支持 6502 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2023-03-22 - **Last Updated**: 2024-07-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ZG Disassembler ## 一个没啥用的反汇编工具 * 当前支持反编译平台 `6502` * 现在开源在这里,让大家一起出谋划策,增加一些平台的标签内容。 * 默认配置文件 ```json { "platform": "6502", // 编译平台,目前支持 6502 "ableLabel": false, // 是否启用标签 "labelName": "label", // 标签名称 "labelStartIndex": 0, // 标签下标起始索引 "replaceLabel": false, // 是否使用设定好的标签替换 "replaceLabelFile": [ // 替换标签配置文件路径 "./labels/6502labels.ini" ], "orgAddress": "0x8000", // 编译起始地址 "baseAddress": 0, // 文件读取起始地址,仅对二进制文件类型有效 "readDataLength": null, // 读取文件长度,仅对二进制文件类型有效 "fileType": "Binary" // 文件读取起始位置,仅对 Binary 有效 } ``` * 关于标签配置文件 ```ini ; 这里是注释 ; This is Comment ; 右边的值可使用10进制(123456),也可使用16进制(0x8000) PPU_Control=0x2000 ``` --- LICENCE MIT © 2022-presennt, ZENG GE