Главная страница
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.015 c
14-83656
-=DeMoH=-
2003-05-05 12:56
2003.05.26
Как работать с ASP?


9-83314
Michael Makushev
2002-12-16 13:19
2003.05.26
Все таки что лучше...?


8-83616
FROM_X
2003-02-13 13:27
2003.05.26
DirectSS кто нить работал с ним? Вопрос...


1-83482
MMF
2003-05-13 14:01
2003.05.26
проблемы с Tregistry.SaveKey


4-83824
Prooksius
2003-03-31 15:02
2003.05.26
Хэндл другого процесса