Changeset 8975 in vbox for trunk/src/VBox/Disassembler/testcase/tstAsmLock-1.asm
- Timestamp:
- May 20, 2008 7:01:58 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/testcase/tstAsmLock-1.asm
r8974 r8975 325 325 ; 326 326 ; fe /1 DEC reg8/mem8 - sans reg dst 327 lock dec byte [40cc 0h]327 lock dec byte [40cch] 328 328 lock dec byte [xBX] 329 329 lock dec byte [xSI] 330 330 ; ff /1 DEC regX/memX - sans reg dst 331 lock dec word [40cc 0h]331 lock dec word [40cch] 332 332 lock dec word [xBX] 333 333 lock dec word [xSI] 334 lock dec dword [40cc 0h]334 lock dec dword [40cch] 335 335 lock dec dword [xBX] 336 336 lock dec dword [xSI] 337 337 %ifdef WITH_64_BIT_TESTS 338 lock dec qword [40cc 0h]338 lock dec qword [40cch] 339 339 lock dec qword [xBX] 340 340 lock dec qword [xSI] … … 347 347 ; 348 348 ; fe /0 INC reg8/mem8 - sans reg dst 349 lock inc byte [40cc 0h]349 lock inc byte [40cch] 350 350 lock inc byte [xBX] 351 351 lock inc byte [xSI] 352 352 ; ff /0 INC regX/memX - sans reg dst 353 lock inc word [40cc 0h]353 lock inc word [40cch] 354 354 lock inc word [xBX] 355 355 lock inc word [xSI] 356 lock inc dword [40cc 0h]356 lock inc dword [40cch] 357 357 lock inc dword [xBX] 358 358 lock inc dword [xSI] 359 359 %ifdef WITH_64_BIT_TESTS 360 lock inc qword [40cc 0h]360 lock inc qword [40cch] 361 361 lock inc qword [xBX] 362 362 lock inc qword [xSI] … … 365 365 %endif 366 366 367 ; 367 368 ; NEG 369 ; 370 ; f6 /3 NEG reg8/mem8 - sans reg dst 371 lock neg byte [40cch] 372 lock neg byte [xBX] 373 lock neg byte [xSI] 374 ; f7 /3 NEG regX/memX - sans reg dst 375 lock neg word [40cch] 376 lock neg word [xBX] 377 lock neg word [xSI] 378 lock neg dword [40cch] 379 lock neg dword [xBX] 380 lock neg dword [xSI] 381 %ifdef WITH_64_BIT_TESTS 382 lock neg qword [40cch] 383 lock neg qword [xBX] 384 lock neg qword [xSI] 385 lock neg qword [r8] 386 lock neg qword [r12] 387 %endif 388 389 ; 368 390 ; NOT 391 ; 392 ; f6 /2 NOT reg8/mem8 - sans reg dst 393 lock not byte [40cch] 394 lock not byte [xBX] 395 lock not byte [xSI] 396 ; f7 /2 NOT regX/memX - sans reg dst 397 lock not word [40cch] 398 lock not word [xBX] 399 lock not word [xSI] 400 lock not dword [40cch] 401 lock not dword [xBX] 402 lock not dword [xSI] 403 %ifdef WITH_64_BIT_TESTS 404 lock not qword [40cch] 405 lock not qword [xBX] 406 lock not qword [xSI] 407 lock not qword [r8] 408 lock not qword [r12] 409 %endif 410 369 411 ; OR 370 412 ; SBB
Note:
See TracChangeset
for help on using the changeset viewer.