{"id":32643773,"url":"https://github.com/qluana7/asmlib","last_synced_at":"2026-07-02T02:31:05.384Z","repository":{"id":267636189,"uuid":"858030879","full_name":"qluana7/asmlib","owner":"qluana7","description":"Collection of algorithms, data structures, and other functions implemented in assembly.","archived":false,"fork":false,"pushed_at":"2025-02-02T06:36:12.000Z","size":81,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-31T03:58:11.901Z","etag":null,"topics":["assembly","assembly-x86","library","presets"],"latest_commit_sha":null,"homepage":"","language":"Assembly","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/qluana7.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":"2024-09-16T07:19:05.000Z","updated_at":"2025-06-13T04:31:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"160fbcd4-e9d4-4abd-b9e5-9a8c02e3a4e7","html_url":"https://github.com/qluana7/asmlib","commit_stats":null,"previous_names":["qluana7/asmlib"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/qluana7/asmlib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qluana7%2Fasmlib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qluana7%2Fasmlib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qluana7%2Fasmlib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qluana7%2Fasmlib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qluana7","download_url":"https://codeload.github.com/qluana7/asmlib/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qluana7%2Fasmlib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35030920,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-02T02:00:06.368Z","response_time":173,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","assembly-x86","library","presets"],"created_at":"2025-10-31T03:57:10.726Z","updated_at":"2026-07-02T02:31:05.376Z","avatar_url":"https://github.com/qluana7.png","language":"Assembly","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv id=\"toc\"\u003e\n  \u003cul style=\"list-style: none;\" align=\"center\"\u003e\n    \u003csummary\u003e\n      \u003ch1\u003e Assembly Preset Library \u003c/h1\u003e\n    \u003c/summary\u003e\n  \u003c/ul\u003e\n\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\u003ci\u003eCollection of algorithms, data structures, and other functions implemented in assembly.\u003c/i\u003e\u003c/p\u003e\n\n## Features\n- **Collection of assembly presets**: Includes algorithms, data structures, and implementations of functions.\n- **Use of Netwide Assembly (NASM)**: Most of the code is written using NASM, targeting the x86_64 architecture.\n- **Linking with GCC**: Designed with the assumption that linking will be performed using GCC.\n\u003c/br\u003e\n\n## How to use\nCopy the entire source from the file and paste it into your code. The `extern` part indicates the dependency functions required by the implementation. If there are `global` directives, ensure to utilize the functions associated with those directives; functions not designated as `global` in this case should be considered private. If there are no `global` directives, all functions will be considered public.\n\nHere's template of main code.\n```nasm\n; Declare global variables required by some functions.\nsection .data\n    ...\n\nsection .text\n; Do not use the global directive for functions, as it is only intended to mark them as public.\n; Example: global func (do not use this)\n\n; Declare the main function as global\n    global main\n\n; Declare extern functions required by the copied code from the repository\n    extern ...\n\n; Additional extern dependencies\n    extern ...\n\n; Add any required functions from the copied code here\ndependency_func:\n    ...\n\n; Function implementation from the copied code\nfunc:\n    ...\n\n; Main code execution\nmain:\n    ...\n```\n\n## Contribute\nPlease submit a pull request while adhering to the rules outlined in the [RULES.md](https://github.com/qluana7/asmlib/blob/main/RULES.md)\n\n## Collaborator\n\u003cimg title=\"ku7431\" src=\"https://avatars.githubusercontent.com/u/75860187\" width=16 height=16\u003e ku7431\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqluana7%2Fasmlib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqluana7%2Fasmlib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqluana7%2Fasmlib/lists"}