{"id":24109617,"url":"https://github.com/xyproto/lookslikegoasm","last_synced_at":"2026-04-29T00:31:50.402Z","repository":{"id":260074572,"uuid":"880183977","full_name":"xyproto/lookslikegoasm","owner":"xyproto","description":"A Go package that tries to determine if the given Assembly source code looks like Go/Plan9 style Assembly","archived":false,"fork":false,"pushed_at":"2024-10-29T10:28:38.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-11T00:57:26.086Z","etag":null,"topics":["asm","assembly","go","plan9"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xyproto.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}},"created_at":"2024-10-29T09:19:44.000Z","updated_at":"2024-10-31T09:10:56.000Z","dependencies_parsed_at":"2024-10-29T12:20:18.514Z","dependency_job_id":null,"html_url":"https://github.com/xyproto/lookslikegoasm","commit_stats":null,"previous_names":["xyproto/lookslikegoasm"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xyproto%2Flookslikegoasm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xyproto%2Flookslikegoasm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xyproto%2Flookslikegoasm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xyproto%2Flookslikegoasm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xyproto","download_url":"https://codeload.github.com/xyproto/lookslikegoasm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252867280,"owners_count":21816647,"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","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","go","plan9"],"created_at":"2025-01-11T00:57:28.883Z","updated_at":"2026-04-29T00:31:45.381Z","avatar_url":"https://github.com/xyproto.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lookslikegoasm\n\nThis is a package that tries to determine if the given Assembly source code looks like Go/Plan9 style Assembly or Intel/AT\u0026T style Assembly.\n\nThe `Consider` function returns `true` if it looks like Go/Plan9 style assembly.\n\nThe utility in `cmd` can be installed with:\n\n    go install github.com/xyproto/lookslikegoasm/cmd/lookslikegoasm@latest\n\nExample use:\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n\n    \"github.com/xyproto/lookslikegoasm\"\n)\n\nfunc main() {\n    asmSource := `\n    TEXT hello(SB), $0-0\n    MOVQ AX, BX\n    ADDQ $1, AX\n    CALL somefunction\n    `\n\n    if lookslikegoasm.Consider(asmSource) {\n        fmt.Println(\"Looks like Go/Plan9 style Assembly\")\n    } else {\n        fmt.Println(\"Does not look like Go/Plan9 style Assembly\")\n    }\n}\n```\n\nGeneral info:\n\n* Version: 1.0.0\n* License: BSD-3\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxyproto%2Flookslikegoasm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxyproto%2Flookslikegoasm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxyproto%2Flookslikegoasm/lists"}