annotate cos/utils/bin2c.py @ 201:d5debbfc0200
Added all 27 core instructions of msp430
author |
Windel Bouwman |
date |
Thu, 13 Jun 2013 00:07:28 +0200 |
parents |
47b7df514243 |
children |
|
rev |
line source |
25
|
1 #!/usr/bin/python
|
|
2
|
|
3 import sys
|
|
4 print(sys.argv)
|
|
5 if len(sys.argv) < 2:
|
|
6 print('Usage: {0} binfile [headerfile]'.format(sys.argv[0]))
|
|
7 sys.exit(-1)
|
|
8
|
|
9 with open(sys.argv[1], 'rb') as f:
|
|
10 data = f.read()
|
|
11
|
|
12 s = ', '.join(hex(b) for b in data)
|
28
|
13 output = 'unsigned char data[] = {{{0}}};'.format(s)
|
25
|
14 if len(sys.argv) < 3:
|
|
15 print(output)
|
|
16 else:
|
|
17 with open(sys.argv[2], 'w') as f:
|
|
18 f.write(output)
|
|
19
|