Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2003.05.26;
Скачать: CL | DM;

Вниз

Assembler   Найти похожие ветки 

 
Serg!   (2003-05-14 14:58) [0]

Здравствуйте!
Нормального форума по assembler не нашёл, пришлось обратиться к вам.
Есть опкод ror, вторым параметром которого должно быть число,
но когда я ввожу переменную типа byte, она не воспринимаются как число, как решить эту проблему?

Вот пример:

i, b: byte;
...
asm

mov ah, b
mov al, i
ror ah, al // Несопоставимые параметры! (Что-то в этом роде...)


 
MBo ©   (2003-05-14 15:03) [1]

допустимый синтаксис
ROR dest Rotate dest right by 1 bit position
dest,CL ...by CL bit positions
dest,cnt ...by immediate count bit positions (mod 32)


 
Digitman ©   (2003-05-14 15:06) [2]

RCL/RCR/ROL/ROR-—Rotate

These instructions shift (rotate) the bits of the first operand (destination operand) the number of
bit positions specified in the second operand (count operand) and stores the result in the desti-nation
operand. The destination operand can be a register or a memory location; the count
operand is an unsigned integer that can be an immediate or a value in the CL register. The
processor restricts the count to a number between 0 and 31 by masking all the bits in the count
operand except the five least-significant bits.


 
BillyJeans ©   (2003-05-14 15:06) [3]

asm

mov ah, b
mov cl, i
ror ah, cl


 
Skier ©   (2003-05-14 15:07) [4]

var
i, b: byte;
begin
asm
mov ah, b
mov cl, i
ror ah, cl //cl или число. если cl, то учитываются только младшие 5 бит
end; //asm
end;



Страницы: 1 вся ветка

Текущий архив: 2003.05.26;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.021 c
3-83342
AleksandrKu
2003-05-04 09:03
2003.05.26
как открыть ДБ с разрушившимся индексом


3-83399
Ann
2003-05-06 15:55
2003.05.26
запрос


4-83801
bobo
2003-03-25 19:06
2003.05.26
Как сделать ПЛАВНУЮ прокрутку в Rich Edit control ?


14-83722
Rain
2003-05-06 18:00
2003.05.26
IP


7-83770
X-RayMan
2003-03-29 15:18
2003.05.26
TerminateProcess и разная фигня...