{"id":48801706,"url":"https://github.com/visualdoj/nasm_examples","last_synced_at":"2026-04-14T03:04:03.758Z","repository":{"id":234838580,"uuid":"789592964","full_name":"visualdoj/nasm_examples","owner":"visualdoj","description":"Several programs written in NASM to demonstrate how to do simple things in windows and linux","archived":false,"fork":false,"pushed_at":"2026-03-24T05:03:54.000Z","size":31,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-24T06:05:14.771Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Assembly","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/visualdoj.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-21T01:53:12.000Z","updated_at":"2026-03-24T05:03:58.000Z","dependencies_parsed_at":"2024-04-23T10:53:42.916Z","dependency_job_id":null,"html_url":"https://github.com/visualdoj/nasm_examples","commit_stats":null,"previous_names":["visualdoj/nasm_examples"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/visualdoj/nasm_examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visualdoj%2Fnasm_examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visualdoj%2Fnasm_examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visualdoj%2Fnasm_examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visualdoj%2Fnasm_examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/visualdoj","download_url":"https://codeload.github.com/visualdoj/nasm_examples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visualdoj%2Fnasm_examples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31779961,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"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":[],"created_at":"2026-04-14T03:04:01.154Z","updated_at":"2026-04-14T03:04:03.750Z","avatar_url":"https://github.com/visualdoj.png","language":"Assembly","readme":"# NASM examples\n\n|Program  |Description                                                         |Sources                                                                                |\n|---------|--------------------------------------------------------------------|---------------------------------------------------------------------------------------|\n|exit77   |Returns exit code 77, kind of minimal application                   |[unix64](unix64/exit77.asm)   [win64](win64/exit77.asm)    [mac64](mac64/exit77.asm)   |\n|hello    |Prints \"Hello world!\", basics of printing to stdout                 |[unix64](unix64/hello.asm)    [win64](win64/hello.asm)     [mac64](mac64/hello.asm)    |\n|args     |Prints command line arguments, one per line, in UTF-8 encoding      |[unix64](unix64/args.asm)     [win64](win64/args.asm)      [mac64](mac64/args.asm)     |\n|count    |Prints integers from 1 to N, one per line                           |[unix64](unix64/count.asm)    [win64](win64/count.asm)     [mac64](mac64/count.asm)    |\n|envvars  |Prints environment variables, one per line, in UTF-8 encoding       |[unix64](unix64/envvars.asm)  [win64](win64/envvars.asm)   [mac64](mac64/envvars.asm)  |\n|colors   |Prints colorful output (if supported by TTY)                        |[unix64](unix64/colors.asm)   [win64](win64/colors.asm)    [mac64](mac64/colors.asm)   |\n|upper    |Converts all lowercase letters in stdin to uppercase                |[unix64](unix64/upper.asm)    [win64](win64/upper.asm)     [mac64](mac64/upper.asm)    |\n|reverse  |Reads all of stdin and prints it in reverse                         |[unix64](unix64/reverse.asm)  [win64](win64/reverse.asm)   [mac64](mac64/reverse.asm)  |\n|clock    |Prints current UTC date and time in ISO 8601 format                 |[unix64](unix64/clock.asm)    [win64](win64/clock.asm)     [mac64](mac64/clock.asm)    |\n|sleep    |Sleeps for the specified number of seconds                          |[unix64](unix64/sleep.asm)    [win64](win64/sleep.asm)     [mac64](mac64/sleep.asm)    |\n|rawkey   |Reads raw keypresses and prints byte values, exits on ESC           |[unix64](unix64/rawkey.asm)   [win64](win64/rawkey.asm)    [mac64](mac64/rawkey.asm)   |\n|hexdump  |Dumps a file in hex dump format                                     |[unix64](unix64/hexdump.asm)  [win64](win64/hexdump.asm)   [mac64](mac64/hexdump.asm)  |\n|clear    |Clears the terminal screen                                          |[unix64](unix64/clear.asm)    [win64](win64/clear.asm)     [mac64](mac64/clear.asm)    |\n|progress5|Fills progress bar from 0 to 100% in 5 seconds                      |[unix64](win64/progress5.asm) [win64](win64/progress5.asm) [win64](win64/progress5.asm)|\n|sqrt     |Prints the square root of a floating-point argument                 |[unix64](unix64/sqrt.asm)     [win64](win64/sqrt.asm)      [mac64](mac64/sqrt.asm)     |\n|ctrlc    |Waits for Ctrl+C, acknowledges it, and exits via standard signal    |[unix64](unix64/ctrlc.asm)    [win64](win64/ctrlc.asm)     [mac64](mac64/ctrlc.asm)    |\n|brainf   |Brainfuck JIT compiler — compiles and runs BF as native x86-64 code |[unix64](unix64/brainf.asm)   [win64](win64/brainf.asm)    [mac64](mac64/brainf.asm)   |\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvisualdoj%2Fnasm_examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvisualdoj%2Fnasm_examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvisualdoj%2Fnasm_examples/lists"}