Git - code.swisschili.sh
code.swisschili.sh
/
6502
/
c6b4f7e34ea1bad432d59c7cff283dfb08e398d1
/
.
/
csv2h.awk
blob: f98ba9ea395ab0a0a665a3887bc81c859f8ff220 [
file
] [
log
] [
blame
]
swissChili
6c61a79
2020-07-28 16:29:20 -0700
[
diff
] [
blame
]
1
BEGIN
{
2
FS
=
","
3
print
"#pragma once\n"
4
print
"// AUTO GENERATED FILE, DO NOT EDIT BY HAND"
5
print
"#define INSTRUCTIONS \\"
6
}
7
8
/
0x
.+/
{
9
print
" INST("
$2
", AM_"
$3
", "
$1
" ) \\"
10
}