source: dev/trunk/ab5.0/abdev/compiler_x86/op32_main.cpp@ 481

Last change on this file since 481 was 225, checked in by dai_9181, 17 years ago

CodeGeneratorクラスのベースを実装

File size: 193 bytes
Line 
1#include "stdafx.h"
2
3#include "../BasicCompiler_Common/common.h"
4#include "Opcode.h"
5
6
7
8BOOL 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.