Menu

Tree [6fa252] master /
 History

HTTPS access


File Date Author Commit
 .github 2023-01-12 Josef Angstenberger Josef Angstenberger [a18500] clang-tidy: Update configuration and CI call
 doc 2023-05-09 fenugrec fenugrec [6fa252] new input filter : nibble_swap (#62)
 etc 2023-04-05 Markus Heidelberg Markus Heidelberg [f3e506] doc: Move .XX macros up a few lines before .SH ...
 srec_cat 2023-03-08 Sean Alling Sean Alling [dc5d56] Migrated code base to use cstdint (#48)
 srec_cmp 2020-02-01 Josef Angstenberger Josef Angstenberger [137dd2] Remove VIM modlines in favor of EditorConfig
 srec_info 2023-01-12 Josef Angstenberger Josef Angstenberger [b1b81d] C++: Apply misc readability fixes
 srecord 2023-05-09 fenugrec fenugrec [6fa252] new input filter : nibble_swap (#62)
 test 2023-05-09 fenugrec fenugrec [6fa252] new input filter : nibble_swap (#62)
 .clang-tidy 2023-01-27 Sean Alling Sean Alling [cfc2f4] [modernization] First pass updating codebase to...
 .editorconfig 2022-11-08 Josef Angstenberger Josef Angstenberger [0a6c49] Add .gitattributes to force LF
 .gitattributes 2022-11-08 Josef Angstenberger Josef Angstenberger [0a6c49] Add .gitattributes to force LF
 .gitignore 2023-03-08 Sean Alling Sean Alling [dc5d56] Migrated code base to use cstdint (#48)
 .mega-linter.yml 2022-10-26 Josef Angstenberger Josef Angstenberger [d26b9b] Add GitHub workflow for MegaLinter
 AUTHORS 2022-08-17 Scott Finneran Scott Finneran [a2b7b5] added license and authors update
 CMakeLists.txt 2023-03-27 Scott Finneran Scott Finneran [0e0131] Generate compile_commands.json in build directo...
 LICENSE 2022-08-17 Scott Finneran Scott Finneran [a2b7b5] added license and authors update
 README.md 2023-04-14 danselmi danselmi [56818b] Add support for gowin .fs files (input only) (#59)
 RELEASE 2022-10-26 Josef Angstenberger Josef Angstenberger [4431ee] Fix spelling errors
 cspell.config.yaml 2023-03-27 Scott Finneran Scott Finneran [0e0131] Generate compile_commands.json in build directo...

Read Me

SRecord

The SRecord package is a collection of powerful tools for manipulating EPROM load files.

I wrote SRecord because when I was looking for programs to manipulate EPROM load files, I could not find very many.
The ones that I could find only did a few of the things I needed. SRecord is written in C++ and polymorphism is
used to provide the file format flexibility and arbitrary filter chaining. Adding more file formats and filters is
relatively simple, see the Reference Manual.
-- Peter Miller (original author of SRecord)

The SRecord package understands a number of file formats:

  • Ascii-Hex: input/output; also known as ascii-space-hex
  • ASM: output only; for embedding data into Assembler code
  • Atmel Generic: input/output; used by Atmel AVR assembler
  • BASIC: output only; for embedding data into BASIC code
  • BinaryBinary: input/output
  • B-Record: input/output; also known as Freescale Dragonball bootstrap b-record
  • C: output only; for embedding data into C code
  • COE: output only; Extension .coe; also known as Xilinx Coefficient File format
  • Cosmac: input/output; also known as RCA Cosmac Elf format
  • DEC Binary (XXDP): input/output
  • Efinix hex/bit: input;
  • Elektor Monitor (EMON52): input/output
  • Fairchild Fairbug: input/output
  • Formatted Binary: input/output
  • Four Packed Code (FPC): input/output
  • Gowin fs: input;
  • Hexdump: output only; a simple hexdump
  • HP64000 Absolute: input only
  • IDT/sim: input/output
  • Intel: input/output; also known as Intel MCS-86 Object format
  • Intel Absolute Object Module Format (AOMF): input/output
  • Intel 16 (INHX16): input/output; also known as Intel hexadecimal 16
  • LSI Logic Fast Load: input/output
  • Logisim: input/output
  • Memory Initialization Format: output only; Extension .mem; used by Lattice Semiconductor
  • MIF: input/output; used by Altera Memory Initialization File format
  • MOS Technology: input/output
  • MIPS-Flash: input/output
  • Motorola S-Record: input/output; also known as the Exorciser, Exormacs or Exormax
  • MsBin: input/output; also known as Windows CE Binary Image Data format
  • Needham: input/output; also known as Needham Electronics ASCII file format
  • OS65V: input/output; also known as Ohio Scientific hexadecimal format
  • PPB: input/output, also known as Stag Prom Programmer binary
  • PPX: input/output, also known as Stag Prom Programmer hexadecimal
  • Signetics: input/output
  • SPASM: input/output; used by a variety of PIC programmers
  • Spectrum: input/output
  • Tektronix: input/output
  • Tektronix Extended: input/output
  • Texas Instruments Tagged: input/output (both 8 and 16 bit); also known as TI-tagged or TI-SDSMAC
  • Texas Instruments ti-txt: input/output; used by bootstrap loader of TI MSP430
  • TRS-80: input/output; used by The Radio Shack
  • VHDL: output only
  • VHDL textio: output only; suitable for loading with textio.read() into a bit_vector
  • Verilog VMEM: input/output; suitable for loading with $readmemh()
  • Wilson: input/output; mysterious type of EPROM writer

Full documentation and binary packages can be found at the SRecord website