0
votes
0answers
15 views
Is there a way to create and output strings inside of a procedure in assembly?
I'm trying to create and print data inside of a procedure that wasn't created in the data section of the main procedure.
0
votes
2answers
17 views
Address Error in Assembly (ColdFire MCF5307)
Taking my first course in assembly language, I am frustrated with cryptic error messages during debugging... I acknowledge that the following information will not be enough to find …
0
votes
2answers
31 views
Assembly and System Calls
Im having a bit of trouble understanding the more complex system calls in assembly. I wrote a exec system call and it worked great
.bss
.text
.globl _start
_start:
#exit(0) …
1
vote
1answer
29 views
Utilizing the LDT (Local Descriptor Table)
I am trying to do some experiments using different segments besides the default code and data user and kernel segments. I hope to achieve this through use of the local descriptor t …
0
votes
2answers
26 views
Assembly code as an argument to inline assembler in Visual Studio
I need to pass assembly code as arguments in Visual Studio, therefore have a function e.g.: myasm(char *x) that will accept arguments like "mov eax,eax\n add eax,eax"
Unfortunatel …
2
votes
4answers
83 views
Is there any assembly language debugger for OS X?
So i was wondering if there is any? I know afd on windows but not sure anything about mac?
And this his how i am using nasam on the following code: nasm a.asm -o a.com -l a.lst
[ …
0
votes
3answers
24 views
How can I jump relative to the PC using the gnu assembler for AVR?
I have a binary file that I've disassembled using avr-objcopy. The interrupt vector table looks like:
00000000 :
; VECTOR TABLE
0: 13 c0 rjmp .+38 ; 0x28, …
0
votes
3answers
52 views
LOOP, LOOPE, LOOPNE?
Can anyone please explain me the difference between the assembly instructions LOOP, LOOPE and LOOPNE.
Thanks.
3
votes
4answers
90 views
Illegal instruction in ASM: lock cmpxchg dest, src
I've been messing around with some x86 assembly as its come up in a number of my classes. In particular, I've wanted to expose compare-and-swap (CAS) as a user function. This is wi …
0
votes
3answers
69 views
Registers for X86_64 processors
Where can I find the names of the new registers for assembly on this architecture. I am referring to registers in X86 like EAX, ESP, EBX, etc. But id like them in 64bit.
I tried …
1
vote
4answers
69 views
Starting Assembly
I'm new to assembly language, and would like to learn. I have Vista-64 (will be upgraded to Windows 7 64), and I will soon be reinstalling 32-bit Linux, but I will end up programmi …
3
votes
2answers
44 views
Which assemblers currently support the AVX instruction set?
I'd like to start and play with some AVX (advanced vector extension) instructions. I know Intel provides an emulator to test software containing these instructions (see this questi …
2
votes
2answers
58 views
Prefetch for Intel Core 2 Duo
Has anyone had experience using prefetch instructions for the Core 2 Duo processor?
I've been using the (standard?) prefetch set (prefetchnta, prefetcht1, etc) with success for a …
1
vote
5answers
71 views
Simple assembly question
MOV [1234H], AX means that the value of AX is copied to 1234 hexadecimal address in memory.
So, please correct me if what I am saying is wrong, the [] operator functions as a point …
2
votes
4answers
105 views
How do I disassemble raw x86 code?
I'd like to disassemble the MBR (first 512 bytes) of a bootable x86 disk that I have. I have copied the MBR to a file using
dd if=/dev/my-device of=mbr bs=512 count=1
Any sugge …
