I am working my way through http://www.amazon.com/Assembly-Language-Step-Step-Programming/dp/0470497025.
Currently, I'm trying to move some of the code around so that I can compile with GAS, instead of NASM (the book's default compiler), and I'm having trouble understanding what some of it means.
This is my source code of confusion
EatMsg: db *Eat at Joe's!* , 10
EatLen: equ $-EatMst
(it's in .section .data)
how would I rewrite it to work with GAS?
See Question&Answers more detail:os