aboutsummaryrefslogtreecommitdiffstats
path: root/icemulti
diff options
context:
space:
mode:
authorRoland Lutz <rlutz@hedmen.org>2017-07-11 18:22:49 +0200
committerRoland Lutz <rlutz@hedmen.org>2017-09-04 20:10:26 +0200
commit29cd829eb36cfe98b1fe149fb7db258db93d3878 (patch)
treea54feda7e80c55ebcaaa5a8b9fe5c154bce807e4 /icemulti
parent4cb0dcbffafeace7f0ed56ba813bbed4df8a1f30 (diff)
downloadicestorm-29cd829eb36cfe98b1fe149fb7db258db93d3878.tar.gz
icestorm-29cd829eb36cfe98b1fe149fb7db258db93d3878.tar.bz2
icestorm-29cd829eb36cfe98b1fe149fb7db258db93d3878.zip
icemulti: Remove class `Header'
Diffstat (limited to 'icemulti')
-rw-r--r--icemulti/icemulti.cc15
1 files changed, 5 insertions, 10 deletions
diff --git a/icemulti/icemulti.cc b/icemulti/icemulti.cc
index d73ef0c..d9c6dae 100644
--- a/icemulti/icemulti.cc
+++ b/icemulti/icemulti.cc
@@ -121,11 +121,6 @@ void Image::write(std::ostream &ofs, uint32_t &file_offset)
write_file(ofs, file_offset, ifs, filename);
}
-class Header {
-public:
- Image const *image;
-};
-
static void write_header(std::ostream &ofs, uint32_t &file_offset,
Image const *image, bool coldboot)
{
@@ -193,7 +188,7 @@ int main(int argc, char **argv)
int image_count = 0;
int align_bits = 0;
bool align_first = false;
- Header headers[NUM_HEADERS];
+ Image *header_images[NUM_HEADERS];
std::unique_ptr<Image> images[NUM_IMAGES];
const char *outfile_name = NULL;
@@ -275,10 +270,10 @@ int main(int argc, char **argv)
// Populate headers
for (int i=0; i<image_count; i++)
- headers[i + 1].image = &*images[i];
- headers[0].image = headers[por_image + 1].image;
+ header_images[i + 1] = &*images[i];
+ header_images[0] = header_images[por_image + 1];
for (int i=image_count; i < NUM_IMAGES; i++)
- headers[i + 1].image = headers[0].image;
+ header_images[i + 1] = header_images[0];
std::ofstream ofs;
std::ostream *osp;
@@ -296,7 +291,7 @@ int main(int argc, char **argv)
for (int i=0; i<NUM_HEADERS; i++)
{
pad_to(*osp, file_offset, i * HEADER_SIZE);
- write_header(*osp, file_offset, headers[i].image, i == 0 && coldboot);
+ write_header(*osp, file_offset, header_images[i], i == 0 && coldboot);
}
for (int i=0; i<image_count; i++)
{