Tagged Questions

22
votes
7answers
795 views

How can adding a function call cause other symbols to become undefined when linking?

Hey Guys, I'm hoping someone will be able to help troubleshoot what I think is a linker script issue. I'm encountering a strange problem after adding a call to a new function. Without the function ...
4
votes
2answers
833 views

linking a gas assembly file as a c program without using gcc

Hey, as an exercise to learn more precisely how c programs work and what minimum level of content must exist for a program to be able to use libc, ive taken it upon myself to attempt to program ...
3
votes
2answers
116 views

Is '.set noat' unsupported for MIPS assembly?

Currently, I'm learning GNU as, and find a lot useful information in "info as". I found ".set noat" is used in MIPS specified code, but when searching for this directive in "info as", I found its ...
3
votes
1answer
400 views

Weird MIPS assembler behavior with jump (and link) instruction

So, we're studying MIPS architecture at school and we're implementing a MIPS32 architecture. I thought I'd use GNU cross-binutils as assembler but I'm getting weird output when dealing with ...
2
votes
1answer
47 views

Does GAS have anything that evaluates similar to NASM's $ token?

I just started down the Assembly road, and one of the first "Hello, World!" tutorials I found http://asm.sourceforge.net/intro/hello.html, gives a nice way of psudo-dynamicly getting the length of the ...
2
votes
1answer
163 views

objdump and ARM vs Thumb

I'm trying to disassemble an object built for ARM with gcc. Unfortunately, objdump is trying to guess whether the code is ARM and Thumb, and is getting it wrong: it thinks my code is Thumb when it's ...
1
vote
2answers
541 views

How to get information from objdump

I encounter a problem when reading information dumped out from an executable file in linux. The information is as follows: 804a0ea: 04 08 add $0x8, %al ... 804a0f4: a6 ...
1
vote
2answers
735 views

Is it possible to use MIPS register names with GAS (GNU assembler)?

If I use register names I get: Error: illegal operands `add $t0,$zero,$zero' If I use register number ($8 instead of $t0 and $0 instead of $zero) it works. (I'm using binutils 2.17).