See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| ; print all command line arguments (5 characters) and exit | |
| ; for 64-bit systems, Linux syscalls | |
| ; for simplicity, this program does not calculate the length of the strings. | |
| ; assemble with: nasm -f elf64 -o args args.asm | |
| ; link with: ld -o args args.o | |
| sys_write equ 1 ; the linux WRITE syscall | |
| sys_exit equ 60 ; the linux EXIT syscall | |
| sys_stdout equ 1 ; the file descriptor for standard output (to print/write to) |