freem / asm6f

A fork of loopy's ASM6, a 6502 assembler.
96 stars 24 forks source link

Clean up showhelp() output (newlines, etc.) #57

Closed koitsu closed 1 year ago

koitsu commented 1 year ago

New:

----------------------------------------------------------------------
$ ./asm6f.exe -h
asm6f 1.6 (+ f003)

Usage: asm6f [-options] sourcefile [outputfile] [listfile]

        -?              show this help
        -l              create listing
        -L              create verbose listing (expand REPT, MACRO)
        -d<name>        define symbol
        -q              quiet mode (no output unless error)
        -n              export FCEUX-compatible .nl files
        -f              export Lua symbol file
        -c              export .cdl for use with FCEUX/Mesen
        -m              export new format Mesen label file (.mlb)
        -M              export old format Mesen label file (.mlb)

See README.TXT for more info.

----------------------------------------------------------------------

Old:

----------------------------------------------------------------------
$ ./asm6f.exe -h

asm6f 1.6 (+ f003)

Usage:  asm6f [-options] sourcefile [outputfile] [listfile]

        -?              show this help
        -l              create listing
        -L              create verbose listing (expand REPT, MACRO)
        -d<name>        define symbol
        -q              quiet mode (no output unless error)
        -n              export FCEUX-compatible .nl files
        -f              export Lua symbol file
        -c              export .cdl for use with FCEUX/Mesen
        -m              export new format Mesen label file (.mlb)

        -M              export old format Mesen label file (.mlb)

See README.TXT for more info.

----------------------------------------------------------------------