- Timestamp:
- Feb 16, 2012 4:00:03 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76307
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstX86-1A.asm
r40140 r40155 852 852 853 853 ; check that repne scasb (al=0) behaves like expected. 854 lea xDI, [REF( g_szAlpha)]854 lea xDI, [REF(NAME(g_szAlpha))] 855 855 xor eax, eax ; find the end 856 856 mov ecx, g_cchAlpha + 1 … … 861 861 862 862 ; check that repe scasb (al=0) behaves like expected. 863 lea xDI, [REF( g_szAlpha)]863 lea xDI, [REF(NAME(g_szAlpha))] 864 864 xor eax, eax ; find the end 865 865 mov ecx, g_cchAlpha + 1 … … 870 870 871 871 ; repne is last, it wins. 872 lea xDI, [REF( g_szAlpha)]872 lea xDI, [REF(NAME(g_szAlpha))] 873 873 xor eax, eax ; find the end 874 874 mov ecx, g_cchAlpha + 1 … … 881 881 882 882 ; repe is last, it wins. 883 lea xDI, [REF( g_szAlpha)]883 lea xDI, [REF(NAME(g_szAlpha))] 884 884 xor eax, eax ; find the end 885 885 mov ecx, g_cchAlpha + 1
Note:
See TracChangeset
for help on using the changeset viewer.