vote up 0 vote down star

Why

I'm "porting" a NASM source to GAS and I found the following lines of code:

push byte 0
push byte 37

GAS doesn't allow "push byte" or "pushb".

How should I translate the above code to GAS syntax?

Thanks

flag

1 Answer

vote up 2 vote down check

pushb was removed from GAS. You should be able to use the push command to get the same effect. A little more information is here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.