mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-03 14:09:05 +00:00
36 lines
668 B
ObjectPascal
Executable File
36 lines
668 B
ObjectPascal
Executable File
//
|
|
//
|
|
// 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.
|