Changeset 90466 in vbox for trunk/include
- Timestamp:
- Aug 2, 2021 10:56:08 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146070
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm-amd64-x86-watcom-16.h
r82968 r90466 730 730 #pragma aux ASMOutStrU8 = \ 731 731 ".186" \ 732 "mov ax, ds" \ 732 733 "mov ds, bx" \ 733 734 "rep outsb" \ 735 "mov ds, ax" \ 734 736 parm [dx] [bx si] [cx] nomemory \ 735 modify exact [si cx ds] nomemory;737 modify exact [si cx ax] nomemory; 736 738 #endif 737 739 … … 749 751 #pragma aux ASMOutStrU16 = \ 750 752 ".186" \ 753 "mov ax, ds" \ 751 754 "mov ds, bx" \ 752 755 "rep outsw" \ 756 "mov ds, ax" \ 753 757 parm [dx] [bx si] [cx] nomemory \ 754 modify exact [si cx ds] nomemory;758 modify exact [si cx ax] nomemory; 755 759 #endif 756 760 … … 768 772 #pragma aux ASMOutStrU32 = \ 769 773 ".386" \ 774 "mov ax, ds" \ 770 775 "mov ds, bx" \ 771 776 "rep outsd" \ 777 "mov ds, ax" \ 772 778 parm [dx] [bx si] [cx] nomemory \ 773 modify exact [si cx ds] nomemory;779 modify exact [si cx ax] nomemory; 774 780 #endif 775 781
Note:
See TracChangeset
for help on using the changeset viewer.