{"id":26208390,"url":"https://github.com/rigbir/assembly_library","last_synced_at":"2026-04-24T10:32:30.729Z","repository":{"id":276849487,"uuid":"930506049","full_name":"Rigbir/Assembly_Library","owner":"Rigbir","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-21T08:26:35.000Z","size":3402,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-25T22:34:51.580Z","etag":null,"topics":["assembly","assembly-library","dosbox","low-level-programming","macros","nasm"],"latest_commit_sha":null,"homepage":"https://rigbir.github.io/Assembly_Library/","language":"Assembly","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Rigbir.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,"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":"2025-02-10T18:36:41.000Z","updated_at":"2025-08-21T08:26:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"642e1d6f-aee9-4a01-a4e2-6b902c2fe5e1","html_url":"https://github.com/Rigbir/Assembly_Library","commit_stats":null,"previous_names":["rigbir/assembly_library"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Rigbir/Assembly_Library","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rigbir%2FAssembly_Library","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rigbir%2FAssembly_Library/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rigbir%2FAssembly_Library/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rigbir%2FAssembly_Library/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Rigbir","download_url":"https://codeload.github.com/Rigbir/Assembly_Library/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rigbir%2FAssembly_Library/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32218963,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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","assembly-library","dosbox","low-level-programming","macros","nasm"],"created_at":"2025-03-12T06:28:38.947Z","updated_at":"2026-04-24T10:32:30.724Z","avatar_url":"https://github.com/Rigbir.png","language":"Assembly","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Assembly Library for x86 (i8086)\n\nThis project is licensed under the [Apache License 2.0](LICENSE).\n\n**Assembly Library for x86** — It is a macro library for the i8086 assembler, designed for user-friendly operation. It simplifies the development of assembly language programs by providing ready-made solutions for basic operations. \n\n## Features  \n**Easy to use** — minimizes routine in assembly programming. \u003cbr\u003e \n**Runs on NASM** — compatible with **Mac OS**, **Linux**, **Windows**.  \n**C-like syntax** — makes assembly code more readable. \n\n\n## Demonstration  \n**Want to see the library in action?**  \nCheck out the  [**Test Program**](https://github.com/Rigbir/Assembly_Library/blob/main/TestLib.asm), which demonstrates most of the library's functions. \n\n\n## Documentation  \n\n**Explore the full documentation for detailed descriptions of all available macros.**  \n \n[**Online Documentation**](https://rigbir.github.io/Assembly_Library/) \u003cbr\u003e\n\u003cbr\u003e [**English Version**](https://github.com/Rigbir/Assembly_Library/blob/main/Documentations/Documentation_EN.md) \u003cbr\u003e  \n[**Russian Version**](https://github.com/Rigbir/Assembly_Library/blob/main/Documentations/Documentation_RU.md) \u003cbr\u003e  \n\n\n## A minimal overview of the features\n\nInput and Output of strings (`print`, `println`, `print_multi`, `print_inline`) \u003cbr\u003e\nOperations with strings (`strlen`, `strcopy`, `strcmp`, `substr`, `concat`) \u003cbr\u003e \nVarious conversions (`int_to_str`, `str_to_int`, `int_to_bin`) \u003cbr\u003e\nAnd other features\n\n \n## Installation and use\n\n1. **Clone this repository**:\n   ```sh\n   git clone https://github.com/Rigbir/Assembly_Library.git\n   ```\n2. **Move the library file to your project folder**:\n   ```sh\n   mv MarLib.asm /path_to_your_work-folder\n   ```\n3. **Use library in your code**:\n   ```asm\n   %include \"MarLib.asm\"\n   ```\n4. **Use the macros you need**:\n   ```asm\n   section .data\n      msg db \"Hey, this is MarLib function$!\"\n   section .text\n      print msg\n   ```\n5. **After, compile your file and run**:\n   ```sh\n   nasm -f bin examples.asm -o examples.com \n  \n   dosbox examples.com\n   ```\n\n## Get Involved \u0026 Feedback  \n\nHave suggestions, found an issue, or want to improve the library?  \nFeel free to contribute, ask questions, or start discussions!  \n\n**Ways to connect:**  \nOpen an [Issue](https://github.com/Rigbir/Assembly_Library/issues) to report a bug or suggest an improvement.  \nFeel free to fork and submit a **Pull Request** with your contributions!  \n\nYour feedback and contributions help make this library better! \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frigbir%2Fassembly_library","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frigbir%2Fassembly_library","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frigbir%2Fassembly_library/lists"}