summaryrefslogtreecommitdiff
path: root/macros.pl
blob: 733f7e1e9f69d4d11c36497d7c534a5136e8379c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/perl
#
# macros.pl   produce macros.c from standard.mac
#
# The Netwide Assembler is copyright (C) 1996 Simon Tatham and
# Julian Hall. All rights reserved. The software is
# redistributable under the licence given in the file "Licence"
# distributed in the NASM archive.

open INPUT,"standard.mac" || die "unable to open standard.mac\n";
open OUTPUT,">macros.c" || die "unable to open macros.c\n";

print OUTPUT "/* This file auto-generated from standard.mac by macros.pl" .
        " - don't edit it */\n\nstatic char *stdmac[] = {\n";

while (<INPUT>) {
  chomp;
  # this regexp ought to match anything at all, so why bother with
  # a sensible error message ;-)
  die "swirly thing alert" unless /^\s*((\s*([^"';\s]+|"[^"]*"|'[^']*'))*)/;
  $_ = $1;
  s/\\/\\\\/g;
  s/"/\\"/g;
  print OUTPUT "    \"$_\",\n" if length > 0;
}

print OUTPUT "    NULL\n};\n"