Changeset 463 for trunk/testcase/Optlink-1-Asm.asm
- Timestamp:
- Jul 28, 2003, 11:35:55 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/Optlink-1-Asm.asm
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r462 r463 17 17 extrn OptSimple:near 18 18 extrn OptPrintf:near 19 extrn _sprintf:near 19 20 20 21 22 public asmfunc 21 23 asmfunc proc near 22 24 xor eax, eax … … 24 26 asmfunc endp 25 27 28 ;; 29 ; asmsprintf(char *pszBuffer, const char* pszFormat, ...); 30 ; 31 public asmsprintf 32 asmsprintf proc near 33 push ebp 34 mov ebp, esp 35 36 push eax ; pszBuffer 37 push edx ; pszFormat 38 lea eax, [ebp+010h] ; &... 39 push eax 40 call _sprintf 41 42 leave 43 ret 44 asmsprintf endp 45 26 46 CODE32 ends 27 47 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.