Вниз
Скачать: 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 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.01 c
14-83687
Ihor Osov'yak
2003-05-05 17:02
2003.05.26
Блин, Каzaa - как заставить работать..


1-83571
Sharik_212
2003-05-12 19:05
2003.05.26
Как запустить почтовую программу, которая определена по умолчанию


3-83357
Avreliy
2003-05-05 15:21
2003.05.26
Отображение значений поля выборки на управляющей сетке!


14-83720
Дмитрий К.К.
2003-05-06 19:09
2003.05.26
Скринсэйверы...


3-83387
Kirill_S
2003-05-06 10:32
2003.05.26
Заполнить программно ComboBox




   Наверх