source:
dev/trunk/abdev/BasicCompiler_Common/src/NativeCode.cpp@
234
Last change on this file since 234 was 232, checked in by , 17 years ago | |
---|---|
File size: 226 bytes |
Line | |
---|---|
1 | #include "stdafx.h" |
2 | |
3 | #define BREAK_EIP(checkEip) (obp+0x00401000<=checkEip) |
4 | |
5 | void ObpPlus( int step ) |
6 | { |
7 | extern int obp; |
8 | obp += step; |
9 | |
10 | // 例:epi=0x00401999 |
11 | if( BREAK_EIP(0x00401999) ) |
12 | { |
13 | int test=0; |
14 | } |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.