The [asm implementaion of `getopt(1)`](https://github.com/jamesodhunt/abox/blob/main/arch/x86_64/src/utils/asm_getopt.asm) needs to support option bundling: ```bash $ abox $cmd -a -b -c # OK: Works $ abox $cmd -abc # BUG: Does not work ```
The asm implementaion of
getopt(1)needs to support option bundling: