summaryrefslogtreecommitdiffstats
path: root/zpu/hdl/example/zpuromgen.c
blob: 1c7f19c5748db650395c9ff4e8af517d00fd0236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// zpuromgen.c
//
// Program to turn a binary file into a VHDL lookup table.
//   by Adam Pierce
//   29-Feb-2008
//
// This software is free to use by anyone for any purpose.
//

#include <stdint.h>
#include <unistd.h>
#include <stdio.h>

typedef uint8_t BYTE;

main(int argc, char **argv)
{
       BYTE    opcode[4];
       int     fd;
       int     addr = 0;
       ssize_t s;

// Check the user has given us an input file.
       if(argc < 2)
       {
               printf("Usage: %s <binary_file>\n\n", argv[0]);
               return 1;
       }

// Open the input file.
       fd = open(argv[1], 0);
       if(fd == -1)
       {
               perror("File Open");
               return 2;
       }

       while(1)
       {
       // Read 32 bits.
               s = read(fd, opcode, 4);
               if(s == -1)
               {
                       perror("File read");
                       return 3;
               }

               if(s == 0)
                       break; // End of file.

       // Output to STDOUT.
               printf("%6d => x\"%02x%02x%02x%02x\",\n",
                      addr++, opcode[0], opcode[1],
                      opcode[2], opcode[3]);
       }

       close(fd);
       return 0;
}

OpenPOWER on IntegriCloud