source:
dev/trunk/abdev/BasicCompiler32/op32_main.cpp@
239
Last change on this file since 239 was 225, checked in by , 17 years ago | |
---|---|
File size: 193 bytes |
Rev | Line | |
---|---|---|
[206] | 1 | #include "stdafx.h" |
2 | ||
[3] | 3 | #include "../BasicCompiler_Common/common.h" |
4 | #include "Opcode.h" | |
5 | ||
6 | ||
7 | ||
8 | BOOL IsSafeReg(int reg){ | |
9 | if(reg==REG_EBX||reg==REG_ESI||reg==REG_EDI) return 1; | |
10 | return 0; | |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.