blob: 15cd682c31422c299ac30e76e4b60ee67340940b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/awk -f
BEGIN {
offset = 0
print "#pragma once"
}
1 {
print "#define HH_TM_"toupper($1)"_OFFSET "offset
print "#define HH_TM_"toupper($1)"_SIZE "$2
offset += $2
}
END {
print "#define HH_TM_SIZE "offset
}
|