//
// srecord - manipulate eprom load files
// Copyright (C) 1998, 1999, 2001-2003, 2006, 2007 Peter Miller
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see
// .
//
#include
#include
srec_output_file_binary::srec_output_file_binary(
const std::string &a_file_name) :
srec_output_file(a_file_name)
{
}
srec_output_file_binary::~srec_output_file_binary()
{
}
void
srec_output_file_binary::write(const srec_record &record)
{
// This format can't do header records or termination records
if (record.get_type() != srec_record::type_data)
return;
seek_to(record.get_address());
const unsigned char *data = record.get_data();
int length = record.get_length();
while (length-- > 0)
put_char(*data++);
}
const char *
srec_output_file_binary::mode()
const
{
return "wb";
}
void
srec_output_file_binary::line_length_set(int)
{
//
// Irrelevant. Ignore.
//
}
void
srec_output_file_binary::address_length_set(int)
{
//
// Irrelevant. Ignore.
//
}
int
srec_output_file_binary::preferred_block_size_get()
const
{
//
// Irrelevant. Use the largest we can get.
//
return srec_record::max_data_length;
}
const char *
srec_output_file_binary::format_name()
const
{
return "Binary";
}