Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| blog:ql_dev1 [2021/12/15 19:50] – [Working with QL files & devices] john | blog:ql_dev1 [2021/12/16 11:03] (current) – john | ||
|---|---|---|---|
| Line 23: | Line 23: | ||
| * {{ : | * {{ : | ||
| * {{ : | * {{ : | ||
| + | * {{ : | ||
| === Sample C68 Makefile === | === Sample C68 Makefile === | ||
| Line 236: | Line 237: | ||
| </ | </ | ||
| - | ... the value printed is the size of the dataspace needed. | + | ... the value printed is the size of the dataspace needed. |
| + | |||
| + | < | ||
| + | $ xtcc game.bin | ||
| + | 868 | ||
| + | $ qltools floppy.img -W game.bin | ||
| + | $ qltools floppy.img -x game.bin 868 | ||
| + | </ | ||
| + | |||
| + | Or even easier, embed the xtcc call in backticks: | ||
| + | |||
| + | < | ||
| + | $ qltools floppy.img -W game.bin | ||
| + | $ qltools floppy.img -x game.bin `xtcc game.bin` | ||
| + | </ | ||