summaryrefslogtreecommitdiff
path: root/src/SDCCpeeph.awk
diff options
context:
space:
mode:
Diffstat (limited to 'src/SDCCpeeph.awk')
-rw-r--r--src/SDCCpeeph.awk14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/SDCCpeeph.awk b/src/SDCCpeeph.awk
new file mode 100644
index 0000000..18999d7
--- /dev/null
+++ b/src/SDCCpeeph.awk
@@ -0,0 +1,14 @@
+BEGIN {
+ print "/* Generated file, DO NOT Edit! */"
+ print "/* To Make changes to rules edit */"
+ print "/* <port>/peeph.def instead. */"
+}
+
+/^\/\// { next}
+
+{ printf "\"" ;
+ printf "%s",$0;
+ print "\\n\"";
+}
+
+