{"id":17018440,"url":"https://github.com/liquidatorcoder/assembly-practice","last_synced_at":"2025-09-20T07:52:04.628Z","repository":{"id":124470883,"uuid":"294605651","full_name":"LiquidatorCoder/Assembly-Practice","owner":"LiquidatorCoder","description":null,"archived":false,"fork":false,"pushed_at":"2021-01-09T17:39:50.000Z","size":62,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-22T16:12:01.608Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LiquidatorCoder.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":"2020-09-11T05:47:09.000Z","updated_at":"2024-07-20T15:30:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"33822218-c019-4637-8922-f4a449d29467","html_url":"https://github.com/LiquidatorCoder/Assembly-Practice","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LiquidatorCoder/Assembly-Practice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiquidatorCoder%2FAssembly-Practice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiquidatorCoder%2FAssembly-Practice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiquidatorCoder%2FAssembly-Practice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiquidatorCoder%2FAssembly-Practice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LiquidatorCoder","download_url":"https://codeload.github.com/LiquidatorCoder/Assembly-Practice/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiquidatorCoder%2FAssembly-Practice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276064329,"owners_count":25578999,"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","status":"online","status_checked_at":"2025-09-20T02:00:10.207Z","response_time":63,"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":[],"created_at":"2024-10-14T06:45:52.861Z","updated_at":"2025-09-20T07:52:04.592Z","avatar_url":"https://github.com/LiquidatorCoder.png","language":"Assembly","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 8086 Assembly Practice\nThis repo contains some of my 8086 Assembly Codes which I have written for pracitce.\n\n## Contents\n|Program                          |Link                         |\n|-------------------------------|-----------------------------|\n|Program to display the value of AX register on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/DISPAX.asm)           |\n|Program to display the sum of value in AX and BX registers on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/ADD.asm)            |\n|Program to display the difference of value in AX and BX registers|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/SUB.asm)|\n|Program to display the and of value in AX and BX registers on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/AND.asm)|\n|Program to display the xor of value in AX and BX registers on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/XOR.asm)|\n|Program to display the xnor of value in AX and BX registers on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/XNOR.asm)|\n|Program to display the sum of 32 bit numbers on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/ADD32BIT.asm)|\n|Program to display the xor of 32 bit numbers on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/XOR32BIT.asm)|\n|Program to display the xnor of 32 bit numbers on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/XNOR32.asm)|\n|Program to display the sum of array of numbers on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/ARRAYSUM.asm)|\n|Program to display the sum of even \u0026 odd indexes of array of numbers|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/ARRAYSUMEO.ASM)|\n|Program to add 2-digit bcd numbers and display the sum on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/BCDADD.asm)|\n|Program to add 4-digit bcd numbers and display the sum on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/BCD16ADD.asm)|\n|Program to subtract 2-digit bcd numbers and display the difference|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/BCDSUB.asm)|\n|Program to display the sum of 3x3 matrices on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/MATRIXADD.asm)|\n|Program to display the product of 3x3 matrices on screen|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/MATRIXMULTIPLY.asm)|\n|Program to add, sub, multiply \u0026 divide operands in AX and BX registers|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/ASMD.asm)|\n|Program to convert binary to grey code|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/BINGREY.asm)|\n|Program to find square root of 2-digit number|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/SQR.asm)|\n|Program to find out the largest element in an array of numbers|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/LARGEST.asm)|\n|Program to read and display a key from keyboard|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/READKEY.asm)|\n|Program to find out the positive or negative numbers from a given series of signed numbers|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/NEGPOS.asm)|\n|Program to find out the even or odd numbers from a given series of numbers|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/EVENODD.asm)|\n|Program to sort the sequence of numbers in ascending order|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/ASCSORT.asm)|\n|Program to convert BCD number into equivalent binary number|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/BCDBIN.asm)|\n|Program to store letters A to Z in memory starting at the address B800H: 0000H|[🔗 Link](https://github.com/LiquidatorCoder/Assembly-Practice/blob/master/PROGRAMS/AZSTORE.asm)|\n\n## Tools Used\n- MASM\n- VS Code\n- DOSBox","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliquidatorcoder%2Fassembly-practice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliquidatorcoder%2Fassembly-practice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliquidatorcoder%2Fassembly-practice/lists"}