{"id":19483505,"url":"https://github.com/librity/learning_assembly","last_synced_at":"2026-05-17T01:49:46.948Z","repository":{"id":54469825,"uuid":"246733570","full_name":"librity/learning_assembly","owner":"librity","description":"All my Assembly tutorials.","archived":false,"fork":false,"pushed_at":"2022-08-17T23:08:20.000Z","size":215,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-09T10:49:09.778Z","etag":null,"topics":["assembly","nasm","nasm-assembly"],"latest_commit_sha":null,"homepage":"https://nasm.us/docs.php","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/librity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-03-12T03:19:27.000Z","updated_at":"2023-01-28T04:58:23.000Z","dependencies_parsed_at":"2022-08-13T16:40:41.968Z","dependency_job_id":null,"html_url":"https://github.com/librity/learning_assembly","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/librity/learning_assembly","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Flearning_assembly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Flearning_assembly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Flearning_assembly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Flearning_assembly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/librity","download_url":"https://codeload.github.com/librity/learning_assembly/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Flearning_assembly/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33125166,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T18:38:32.183Z","status":"ssl_error","status_checked_at":"2026-05-16T18:38:29.903Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["assembly","nasm","nasm-assembly"],"created_at":"2024-11-10T20:15:21.675Z","updated_at":"2026-05-17T01:49:46.919Z","avatar_url":"https://github.com/librity.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Learning Assembly\n\n- https://en.wikipedia.org/wiki/Assembly_language\n\n## Assemblers\n\n- https://en.m.wikipedia.org/wiki/Comparison_of_assemblers\n- https://en.m.wikipedia.org/wiki/Netwide_Assembler\n- https://github.com/yasm/yasm\n- https://en.m.wikipedia.org/wiki/GNU_Assembler\n- https://en.m.wikipedia.org/wiki/FASM\n\n## Hello World!\n\n```nasm\n; nasm -f elf64 hello_world.asm \u0026\u0026 ld hello_world.o \u0026\u0026 ./a.out\n\nsection .data\n  message db \"Hello World\", 10\n\nsection .text\n\nglobal _start\n_start:\n  mov rax, 1\n  mov rdi, 1\n  mov rsi, message\n  mov rdx, 12\n  syscall\n  mov rax, 60\n  mov rdi, 0\n  syscall\n```\n\n## C to Assembly\n\n```bash\n$ gcc -S hello.c\n```\n\n- https://www.geeksforgeeks.org/convert-cc-code-to-assembly-language/\n\n### Videos\n\n- https://www.youtube.com/watch?v=iYRl50gtprA\n\n## NASM, the Netwide Assembler\n\n```bash\n$ sudo apt install nasm\n```\n\n- https://github.com/netwide-assembler/nasm\n- https://nasm.us/docs.php\n- https://marketplace.visualstudio.com/items?itemName=doinkythederp.nasm-language-support\n- https://www.nasm.us/xdoc/2.15.05/nasmdoc.pdf\n\n### Videos\n\n- https://www.youtube.com/watch?v=015dEE3NnZg\n- https://www.youtube.com/watch?v=skRyVBM8yX0\n- https://www.youtube.com/watch?v=HgEGAaYdABA\n\n## Find `syscall` Codes\n\nWith locate:\n\n```bash\n$ sudo apt install plocate\n$ locate unistd_32.h\n```\n\nWith fd/find:\n\n```bash\n$ fd unistd_32.h /\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibrity%2Flearning_assembly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibrity%2Flearning_assembly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibrity%2Flearning_assembly/lists"}