1srec_spasm(5) File Formats Manual srec_spasm(5)
2
3
4
6 srec_spasm - SPASM file format
7
9 This format is the output of the Paralax SPASM assembler (now defunct,
10 I'm told). The file contains two columns of 16‐bit hexadecimal coded
11 values. The first column is the word address, the second column is the
12 word data.
13
14 By default, SRecord treats this is big‐endian data (the most signifi‐
15 cant byte first). If you want little endian order, use the -spasm‐le
16 argument instead.
17
18 Size Multiplier
19 In general, binary data will expand in sized by approximately 5.0 times
20 when represented with this format (5.5 times in Windows).
21
23 Here is an example SPASM file. It contains the data “Hello, World[rq]
24 to be loaded at bytes address 0x0100 (but remember, the file contents
25 are word addressed).
26 0080 6548
27 0081 6C6C
28 0082 2C6F
29 0083 5720
30 0084 726F
31 0085 646C
32
34 srec_cat version 1.64
35 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
36 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Peter Miller
37
38 The srec_cat program comes with ABSOLUTELY NO WARRANTY; for details use
39 the 'srec_cat -VERSion License' command. This is free software and you
40 are welcome to redistribute it under certain conditions; for details
41 use the 'srec_cat -VERSion License' command.
42
44 Scott Finneran E‐Mail: scottfinneran@yahoo.com.au
45 Peter Miller E‐Mail: pmiller@opensource.org.au
46
47
48
49Reference Manual SRecord srec_spasm(5)