{"id":18749669,"url":"https://github.com/coditva/what_the_mup","last_synced_at":"2026-02-21T04:33:43.543Z","repository":{"id":98240564,"uuid":"83545078","full_name":"coditva/What_the_MuP","owner":"coditva","description":"The Microprocessors and Interfacing course practice programs","archived":false,"fork":false,"pushed_at":"2017-03-23T10:26:48.000Z","size":29,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-01T10:11:11.449Z","etag":null,"topics":["asm","assembly","masm"],"latest_commit_sha":null,"homepage":null,"language":"Assembly","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coditva.png","metadata":{"files":{"readme":"README.md","changelog":"change_vovels.asm","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}},"created_at":"2017-03-01T11:00:47.000Z","updated_at":"2023-11-18T16:56:31.000Z","dependencies_parsed_at":"2023-05-18T21:45:32.649Z","dependency_job_id":null,"html_url":"https://github.com/coditva/What_the_MuP","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/coditva/What_the_MuP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coditva%2FWhat_the_MuP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coditva%2FWhat_the_MuP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coditva%2FWhat_the_MuP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coditva%2FWhat_the_MuP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coditva","download_url":"https://codeload.github.com/coditva/What_the_MuP/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coditva%2FWhat_the_MuP/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29673785,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T03:11:15.450Z","status":"ssl_error","status_checked_at":"2026-02-21T03:10:34.920Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["asm","assembly","masm"],"created_at":"2024-11-07T17:08:18.254Z","updated_at":"2026-02-21T04:33:43.509Z","avatar_url":"https://github.com/coditva.png","language":"Assembly","readme":"# What the MuP\nThe Microprocessors and Interfacing course practice programs\n\n## Little info\n- Works with [MASM611](https://sourceforge.net/projects/masm611/)\n- Use [DOSBOX](http://www.dosbox.com/) to run on Win8+/Linux/MacOS\n- Compile and link with ```ml.exe [PROGNAME].asm```\n- Use ```debugx.com``` to debug\n- Note: You might need to rename programs to shorter names for use in DOSBOX\n\n## List of programs\n\n- [sort_in_range.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/sort_in_range.asm)\n  - sort given numbers in 5 ranges\n  - lab1, monday\n\n- [add_and_shift.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/add_and_shift.asm)\n  - add a character at given positions and shift the string\n  - lab1, tuesday\n\n- [sort_string_offset.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/sort_string_offset.asm)\n  - sort string according to a given offset\n  - lab1, wednesday\n\n- [reverse_words_string.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/reverse_words_string.asm)\n  - reverse the words in a string seperated by spaces\n  - lab1, thursday\n\n- [div_by_3.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/div_by_3.asm)\n  - given a set of numbers, store numbers divisible by 3 at another location\n  - lab2, monday\n\n- [change_vovels.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/change_vovels.asm)\n  - change all vovels in a string to '@'\n  - lab2, tuesday\n\n- [mul_check_upper.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/mul_check_upper.asm)\n  - multiply 8 bit numbers with a given number and check if upper 8 bits are 0\n  - lab2, wednesday\n\n- [alt_xchange.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/alt_xchange.asm)\n  - exchange letters at alternate positions in a string\n  - lab2, thursday\n\n- [bubble_sort.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/bubble_sort.asm)\n  - sort array by bubble sort\n\n- [hello_world.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/hello_world.asm)\n  - display 'Hello, world!'\n\n- [change_vovels_2.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/change_vovels_2.asm)\n  - get a string, change all vovels in a string to '@', display it\n  - lab3, tuesday\n\n- [login.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/login.asm)\n  - console I/O\n  - login any username but the correct password (already defined)\n\n- [quiz.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/quiz.asm)\n  - console I/O\n  - Use of procedures for most tasks\n  - A small console quiz\n  - Add infinite questions and play!\n\n- [text_editor_v1.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/text_editor_v1.asm)\n  - file I/O\n  - create and write to a file\n  - lacks support for opening and editing existing file\n\n- [text_editor_v2.asm](https://github.com/UtkarshMe/What_the_MuP/blob/master/text_editor_v2.asm)\n  - file I/O\n  - create, open and write to a file\n\n## License\n[UTkarsh Maheshwari](https://github.com/UtkarshMe)  \n[GPL version 3](https://github.com/UtkarshMe/What_the_MuP/blob/master/LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoditva%2Fwhat_the_mup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoditva%2Fwhat_the_mup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoditva%2Fwhat_the_mup/lists"}