{"id":19489302,"url":"https://github.com/inndy/4bit-kmapper","last_synced_at":"2026-01-29T22:39:03.567Z","repository":{"id":66330576,"uuid":"62694263","full_name":"Inndy/4bit-kmapper","owner":"Inndy","description":"A tiny tool that can auto fill k-map to generate a 4-bits numbers FSM for JK flip-flop input","archived":false,"fork":false,"pushed_at":"2016-07-06T05:51:03.000Z","size":1,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"gh-pages","last_synced_at":"2025-10-31T00:51:58.183Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://inndy.github.io/4bit-kmapper/","language":null,"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/Inndy.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}},"created_at":"2016-07-06T05:41:21.000Z","updated_at":"2016-07-06T05:51:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"283a17c8-adb6-4ade-a75c-bc0643f46cc9","html_url":"https://github.com/Inndy/4bit-kmapper","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Inndy/4bit-kmapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inndy%2F4bit-kmapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inndy%2F4bit-kmapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inndy%2F4bit-kmapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inndy%2F4bit-kmapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Inndy","download_url":"https://codeload.github.com/Inndy/4bit-kmapper/tar.gz/refs/heads/gh-pages","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Inndy%2F4bit-kmapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28888428,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T21:06:44.224Z","status":"ssl_error","status_checked_at":"2026-01-29T21:06:42.160Z","response_time":59,"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":"2024-11-10T21:08:01.990Z","updated_at":"2026-01-29T22:39:03.555Z","avatar_url":"https://github.com/Inndy.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 4bit-kmapper\n\n## What is this?\n\nIt's a transition table to built a sort of 4-bits number FSM with JK flip-flop\nand the following is k-map for every input of JK flip-flop.\n\nThis program can generate output like below.\n\n```\n+-+----+----+--+--+--+--+--+--+--+--+\n|N|DCBA|DCBA|JD|KD|JC|KC|JB|KB|JA|KA|\n+-+----+----+--+--+--+--+--+--+--+--+\n|0|0000|0011| 0| X| 0| X| 1| X| 1| X|\n|3|0011|0101| 0| X| 1| X| X| 1| X| 0|\n|5|0101|1000| 1| X| X| 1| 0| X| X| 1|\n|8|1000|1001| X| 0| 0| X| 0| X| 1| X|\n|9|1001|0010| X| 1| 0| X| 1| X| X| 1|\n|2|0010|0100| 0| X| 1| X| X| 1| 0| X|\n|4|0100|0001| 0| X| X| 1| 0| X| 1| X|\n|1|0001|0000| 0| X| 0| X| 0| X| X| 1|\n+-+----+----+--+--+--+--+--+--+--+--+\n\n\nJD\n+--+--+--+--+--+\n|  |00|01|11|10|\n+--+--+--+--+--+\n|00|0 |0 |X |X |\n|01|0 |1 |X |X |\n|11|0 |X |X |X |\n|10|0 |X |X |X |\n+--+--+--+--+--+\n\nKD\n+--+--+--+--+--+\n|  |00|01|11|10|\n+--+--+--+--+--+\n|00|X |X |X |0 |\n|01|X |X |X |1 |\n|11|X |X |X |X |\n|10|X |X |X |X |\n+--+--+--+--+--+\n\nJC\n+--+--+--+--+--+\n|  |00|01|11|10|\n+--+--+--+--+--+\n|00|0 |X |X |0 |\n|01|0 |X |X |0 |\n|11|1 |X |X |X |\n|10|1 |X |X |X |\n+--+--+--+--+--+\n\nKC\n+--+--+--+--+--+\n|  |00|01|11|10|\n+--+--+--+--+--+\n|00|X |1 |X |X |\n|01|X |1 |X |X |\n|11|X |X |X |X |\n|10|X |X |X |X |\n+--+--+--+--+--+\n\nJB\n+--+--+--+--+--+\n|  |00|01|11|10|\n+--+--+--+--+--+\n|00|1 |0 |X |0 |\n|01|0 |0 |X |1 |\n|11|X |X |X |X |\n|10|X |X |X |X |\n+--+--+--+--+--+\n\nKB\n+--+--+--+--+--+\n|  |00|01|11|10|\n+--+--+--+--+--+\n|00|X |X |X |X |\n|01|X |X |X |X |\n|11|1 |X |X |X |\n|10|1 |X |X |X |\n+--+--+--+--+--+\n\nJA\n+--+--+--+--+--+\n|  |00|01|11|10|\n+--+--+--+--+--+\n|00|1 |1 |X |1 |\n|01|X |X |X |X |\n|11|X |X |X |X |\n|10|0 |X |X |X |\n+--+--+--+--+--+\n\nKA\n+--+--+--+--+--+\n|  |00|01|11|10|\n+--+--+--+--+--+\n|00|X |X |X |X |\n|01|1 |1 |X |1 |\n|11|0 |X |X |X |\n|10|X |X |X |X |\n+--+--+--+--+--+\n```\n\n## License\n\nPublic Domain\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finndy%2F4bit-kmapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finndy%2F4bit-kmapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finndy%2F4bit-kmapper/lists"}