Author Topic: Push AL  (Read 7566 times)

Offline Silwc

  • Jr. Member
  • *
  • Posts: 3
Push AL
« on: November 23, 2012, 09:39:42 PM »
Hello, I have a simple question, is it possible to push register AL onto stack? I can't seem to get it right.
Thanks

Offline Frank Kotler

  • NASM Developer
  • Hero Member
  • *****
  • Posts: 2667
  • Country: us
Re: Push AL
« Reply #1 on: November 23, 2012, 10:09:42 PM »
No. Push ax, eax, or rax depending on the bitness you're assembling for. You can only pay attention to al, if that's all you need, but you can't push just al.

Best,
Frank