summaryrefslogtreecommitdiff
path: root/source/slang/vm.h
blob: e67fec43abd04dcd1ac025f4fbcc6c900d890ded (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// vm.h
#ifndef SLANG_VM_H_INCLUDED
#define SLANG_VM_H_INCLUDED

// This file defines a virtual machine for executing
// code that has been converted to Slang bytecode.
//

#include "../core/basic.h"

namespace Slang
{



}


#endif