@@ -127,9 +127,9 @@ that are available:
127127
128128* ` --print ` - prints out the assembled statements
129129* ` --symbols ` - prints out the symbol table
130- * ` --bin_file ` - save assembled contents to a binary file
131- * ` --cas_file ` - save assembled contents to a cassette file
132- * ` --dsk_file ` - save assembled contents to a virtual disk file
130+ * ` --to_bin ` - save assembled contents to a binary file
131+ * ` --to_cas ` - save assembled contents to a cassette file
132+ * ` --to_dsk ` - save assembled contents to a virtual disk file
133133* ` --name ` - saves the program with the specified name on a cassette or virtual disk file
134134
135135---
@@ -240,9 +240,9 @@ The columns are as follows:
240240
241241### Save to Binary File
242242
243- To save the assembled contents to a binary file, use the ` --bin_file ` switch:
243+ To save the assembled contents to a binary file, use the ` --to_bin ` switch:
244244
245- python3 assembler.py test.asm --bin_file test.bin
245+ python3 assembler.py test.asm --to_bin test.bin
246246
247247The assembled program will be saved to the file ` test.bin ` . Note that this file
248248may not be useful on its own, as it does not have any meta information about
@@ -255,9 +255,9 @@ will not have any effect on the assembled file).
255255
256256### Save to Cassette File
257257
258- To save the assembled contents to a cassette file, use the ` --cas_file ` switch:
258+ To save the assembled contents to a cassette file, use the ` --to_cas ` switch:
259259
260- python3 assembler.py test.asm --cas_file test.cas
260+ python3 assembler.py test.asm --to_cas test.cas
261261
262262This will assemble the program and save it to a cassette file called ` test.cas ` .
263263The source code must include the ` NAM ` mnemonic to name the program (e.g.
@@ -268,7 +268,7 @@ The source code must include the `NAM` mnemonic to name the program (e.g.
268268not be overwritten. If you wish to add the program to ` test.cas ` , you must
269269specify the ` --append ` flag during assembly:
270270
271- python3 assembler.py test.asm --cas_file test.cas --append
271+ python3 assembler.py test.asm --to_cas test.cas --append
272272
273273To load from the cassette file, you must use BASIC's ` CLOADM ` command as follows:
274274
@@ -278,9 +278,9 @@ To load from the cassette file, you must use BASIC's `CLOADM` command as follows
278278
279279### Save to Disk File
280280
281- To save the assembled contents to a disk file, use the ` --dsk_file ` switch:
281+ To save the assembled contents to a disk file, use the ` --to_dsk ` switch:
282282
283- python3 assembler.py test.asm --dsk_file test.dsk
283+ python3 assembler.py test.asm --to_dsk test.dsk
284284
285285This will assemble the program and save it to a disk file called ` test.dsk ` .
286286The source code must include the ` NAM ` mnemonic to name the program on disk (e.g.
@@ -291,7 +291,7 @@ The source code must include the `NAM` mnemonic to name the program on disk (e.g
291291not be updated. If you wish to add the program to ` test.dsk ` , you must specify the
292292` --append ` flag during assembly:
293293
294- python3 assembler.py test.asm --dsk_file test.dsk --append
294+ python3 assembler.py test.asm --to_dsk test.dsk --append
295295
296296To load from the disk file, you must use Disk Basic's ` LOADM ` command as follows:
297297
0 commit comments