Changeset 630 in xtideuniversalbios for trunk/Assembly_Library/Inc/NEC_V.inc
- Timestamp:
- Dec 31, 2024, 3:38:24 PM (8 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Inc/NEC_V.inc
r593 r630 4 4 ; 5 5 ; XTIDE Universal BIOS and Associated Tools 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-20 13by XTIDE Universal BIOS Team.6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2024 by XTIDE Universal BIOS Team. 7 7 ; 8 8 ; This program is free software; you can redistribute it and/or modify … … 782 782 ; 783 783 ; Rotates the destination four bits to the left via the low nibble of AL. 784 ; If the destination is AL then the high and low nibbles will be swapped. 784 785 ; 785 786 ; eROL4 … … 787 788 ; %1: 8-bit destination (register or memory location) 788 789 ; Returns: 789 ; AL: The high nibble of %1 in the low nibble of AL 790 ; AL: The low nibble of AL in the high nibble of AL 791 ; The high nibble of %1 in the low nibble of AL 790 792 ; %1: The low nibble of %1 in the high nibble of %1 791 793 ; The low nibble of AL in the low nibble of %1 … … 863 865 ; 864 866 ; Rotates the destination four bits to the right via the low nibble of AL. 867 ; If the destination is AL then nothing changes. 865 868 ; 866 869 ; eROR4 … … 868 871 ; %1: 8-bit destination (register or memory location) 869 872 ; Returns: 870 ; AL: The low nibble of %1 in the low nibble of AL 873 ; AL: The high nibble of %1 in the high nibble of AL 874 ; The low nibble of %1 in the low nibble of AL 871 875 ; %1: The high nibble of %1 in the low nibble of %1 872 876 ; The low nibble of AL in the high nibble of %1
Note:
See TracChangeset
for help on using the changeset viewer.