{"id":29189415,"url":"https://github.com/errorcodezero/neo6502x","last_synced_at":"2025-07-01T23:07:40.096Z","repository":{"id":301038028,"uuid":"1007970449","full_name":"errorcodezero/neo6502x","owner":"errorcodezero","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-24T21:23:57.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-24T21:37:50.821Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/errorcodezero.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-24T20:23:25.000Z","updated_at":"2025-06-24T21:24:00.000Z","dependencies_parsed_at":"2025-06-24T21:48:22.269Z","dependency_job_id":null,"html_url":"https://github.com/errorcodezero/neo6502x","commit_stats":null,"previous_names":["errorcodezero/neo6502x"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/errorcodezero/neo6502x","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/errorcodezero%2Fneo6502x","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/errorcodezero%2Fneo6502x/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/errorcodezero%2Fneo6502x/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/errorcodezero%2Fneo6502x/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/errorcodezero","download_url":"https://codeload.github.com/errorcodezero/neo6502x/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/errorcodezero%2Fneo6502x/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263047676,"owners_count":23405280,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-01T23:07:39.467Z","updated_at":"2025-07-01T23:07:40.088Z","avatar_url":"https://github.com/errorcodezero.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# neo6502x\n\nAn emulator for the MOS Technology 6502 processor.\n\n## Specifications\n\n- 16-bit\n- Two \"index\" registers x and y.\n- Little-endian\n- 256 bytes of memory in zero page between 0x0 and 0xFF.\n- 0x10000 bytes of memory total.\n- 256 bytes of stack memory(tiny stack) meaning 8-bit stack pointer stored between 0x100 and 0x1FF. Small stack is interesting since it means the stack isn't used in the same way that we use it today.\n- Memory indexing system that is actually pretty cool and allows for fast array ops and other interesting things:\n    - Essentially, memory address after instruction plus value in index register and that's the memory address used in a memory indexed command.\n    - Zero-page uses add without carry and full memory uses add with carry.\n\n## Instruction Completion\n\n| Instruction | Status | Instruction | Status | Instruction | Status | Instruction | Status |\n| :---------- | :----- | :---------- | :----- | :---------- | :----- | :---------- | :----- |\n| ADC         | ❌     | AND         | ✅     | ASL         | ✅     | BCC         | ❌     |\n| BCS         | ❌     | BEQ         | ❌     | BIT         | ❌     | BMI         | ❌     |\n| BNE         | ❌     | BPL         | ❌     | BRK         | ❌     | BVC         | ❌     |\n| BVS         | ❌     | CLC         | ❌     | CLD         | ❌     | CLI         | ❌     |\n| CLV         | ❌     | CMP         | ❌     | CPX         | ❌     | CPY         | ❌     |\n| DEC         | ❌     | DEX         | ❌     | DEY         | ❌     | EOR         | ✅     |\n| INC         | ❌     | INX         | ❌     | INY         | ❌     | JMP         | ❌     |\n| JSR         | ❌     | LDA         | ❌     | LDX         | ❌     | LDY         | ❌     |\n| LSR         | ✅     | NOP         | ❌     | ORA         | ✅     | PHA         | ❌     |\n| PHP         | ❌     | PLA         | ❌     | PLP         | ❌     | ROL         | ✅     |\n| ROR         | ✅     | RTI         | ❌     | RTS         | ❌     | SBC         | ❌     |\n| SEC         | ❌     | SED         | ❌     | SEI         | ❌     | STA         | ❌     |\n| STX         | ❌     | STY         | ❌     | TAX         | ❌     | TAY         | ❌     |\n| TSX         | ❌     | TXA         | ❌     | TXS         | ❌     | TYA         | ❌     |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferrorcodezero%2Fneo6502x","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferrorcodezero%2Fneo6502x","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferrorcodezero%2Fneo6502x/lists"}