blob: 368cc4869cc1eb437f111d4ed09dab60300199fa [file] [log] [blame]
swissChili6c61a792020-07-28 16:29:20 -07001BEGIN {
2 FS = ","
3 print "#pragma once\n"
4 print "// AUTO GENERATED FILE, DO NOT EDIT BY HAND"
5 print "#define INSTRUCTIONS \\"
6}
7
swissChilia4f49b52020-08-16 17:35:37 -07008/0x/ {
swissChili97b5d8b2020-08-15 20:00:54 -07009 print " INST(" $2 ", AM_" $3 ", " $1", " $4 ") \\"
swissChili6c61a792020-07-28 16:29:20 -070010}
swissChilia4f49b52020-08-16 17:35:37 -070011
12END {
13 print ""
14}