{"id":27021334,"url":"https://github.com/oditynet/deasm","last_synced_at":"2025-04-04T19:50:03.625Z","repository":{"id":278721474,"uuid":"936560016","full_name":"oditynet/deasm","owner":"oditynet","description":"Моя реализация дизассемблера/ Dissasembler x86_64","archived":false,"fork":false,"pushed_at":"2025-02-21T09:55:42.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-21T10:37:04.761Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/oditynet.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}},"created_at":"2025-02-21T09:45:27.000Z","updated_at":"2025-02-21T09:56:21.000Z","dependencies_parsed_at":"2025-02-21T10:47:16.402Z","dependency_job_id":null,"html_url":"https://github.com/oditynet/deasm","commit_stats":null,"previous_names":["oditynet/deasm"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oditynet%2Fdeasm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oditynet%2Fdeasm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oditynet%2Fdeasm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oditynet%2Fdeasm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oditynet","download_url":"https://codeload.github.com/oditynet/deasm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247241729,"owners_count":20907061,"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-04-04T19:50:02.122Z","updated_at":"2025-04-04T19:50:03.608Z","avatar_url":"https://github.com/oditynet.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# deasm\nМоя реализация дизассемблера. Читаем и вникаем https://moss.cs.iit.edu/cs450/etc/325383-sdm-vol-2abcd.pdf\n\nФайл исходника asm\n```\nsection .text\nglobal _start\n\n%define system_call int 0x80\n\n_start:\n    mov ebx, 0x1\n    mov ecx, hello\n    mov edx, helloLen\n    mov eax, 0x4\n    system_call\n\n    xor ebx, ebx\n    mov eax, 0x1\n    system_call\n\nsection .data\n    hello db \"1234567890\", 0xa\n    helloLen equ $-hello\n```\n\nВывод программы. Похож с исходником?\n```\n     Секция .data (offset: 2000, size: b):\n0x0011: 1234567890\\0a\n     Секция .strtab (offset: 20d0, size: 2e):\n0x003f: \\001.asm\n0x0045: hello\n0x004a: helloLen\n0x0052: __bss_start\n0x005d: _edata\n0x0063: _end\n\n     Disassembling section .text (offset: 1000, size: 1f):\n0x0067: bb 01 00 00 00     mov ebx, 0x00000001\n0x006c: b9 00 20 40 00     mov ecx, 0x00402000\n0x0071: ba 0b 00 00 00     mov edx, 0x0000000b\n0x0076: b8 04 00 00 00     mov eax, 0x00000004\n0x007b: INT 80                               ;(Syscall) Video Graphics Character Table\n0x007d: 31 db                xor [r/m32], r32\n0x007f: b8 01 00 00 00     mov eax, 0x00000001\n0x0084: INT 80                               ;(Syscall) Video Graphics Character Table\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foditynet%2Fdeasm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foditynet%2Fdeasm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foditynet%2Fdeasm/lists"}