diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2009-11-12 19:34:21 +0100 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2009-11-12 19:34:21 +0100 |
commit | ac421c37ba9a973155dc5600e38d7a40553d8de6 (patch) | |
tree | 5ede0dfe1c02aa547f788a39f070614a64a3b9ab /nim/vis.pas | |
parent | d5acb88cccecf54bcc9a7c13f4fbaa095a8b37d4 (diff) | |
download | Nim-ac421c37ba9a973155dc5600e38d7a40553d8de6.tar.gz |
bind table
Diffstat (limited to 'nim/vis.pas')
-rwxr-xr-x | nim/vis.pas | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/nim/vis.pas b/nim/vis.pas new file mode 100755 index 000000000..b8ba0fc5b --- /dev/null +++ b/nim/vis.pas @@ -0,0 +1,35 @@ +// +// +// The Nimrod Compiler +// (c) Copyright 2009 Andreas Rumpf +// +// See the file "copying.txt", included in this +// distribution, for details about the copyright. +// +unit vis; + +// Virtual instruction set for Nimrod. This is used for LLVM code generation. + +interface + +{$include 'config.inc'} + +uses + nsystem, ast, astalgo, strutils, nhashes, trees, platform, magicsys, + extccomp, options, nversion, nimsets, msgs, crc, bitsets, idents, + lists, types, ccgutils, nos, ntime, ropes, nmath, passes, rodread, + wordrecg, rnimsyn, treetab; + +type + TInstrKind = ( + insAddi, + + ); + TInstruction = record + + end; + + +implementation + +end. |