shl ax,4
but with registers, and memory locations it doesn't. Both of these cause the above error:
shl ax,bl
shl ax,byte[ds:218h]
Also, in an attempt to figure out the type that this should be, I tried the following:
shl ax,byte[4]
shl ax,word[4]
shl ax,dword[4]
All of them had the same effect as using a register, which doesn't make any sense. Those are the only three types it can be, unless i'm misusing the byte[],word[],dword[] operators. Which is very possible. I am just dabbling with boot loaders and such, and don't have tons of experience in assembly.
I would assume the value should be 8bit since ax is 16bit, which means there are only 16 needed values for the second parameter.
if someone could shoot me a link to the shl command specs, or lemme know what i'm doing wrong (probably multiple things
