Главная страница
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.011 c
14-83647
Top Gun
2003-05-01 00:06
2003.05.26
Как действует функция SetWindowLong ? Никак не пойму


1-83554
Stalin
2003-05-13 12:18
2003.05.26
NetWork Initialization Faild


3-83355
Antoxa
2003-05-06 03:09
2003.05.26
Подскажите, как программно изменить тип поля в таблице


1-83490
Oleg Fox
2003-05-14 17:40
2003.05.26
Как записать значение в свойства компонента в работающей программ


3-83409
DBDev
2003-05-06 18:55
2003.05.26
Коллеги, запрос в MSSQL работает, а в MS не хочет, помогите