Tagged Questions
AT&T Syntax is an assembly syntax used in UNIX environments, that originates from AT&T Bell Labs.
6
votes
1answer
865 views
Defining Bytes in GCC Inline Assembly in Dev-C++(.ascii in AT&T syntax on Windows)
The code below is just showing a Message Box on the screen.
The addresses are hardcoded to facilitate:
int main ()
{
asm("xorl %eax, %eax \n"
"xorl %ebx, %ebx \n"
...
3
votes
1answer
73 views
How to add an immediate byte to a long register with AT&T syntax on x86?
From what I understand reading the intel manuals, it should be possible to write an instruction like "add $0x7f, %ebx" and it should be encoded as 83 /0 ib for a total of three bytes. However, when I ...
3
votes
1answer
98 views
Is there a special andorid build for AT&T Samsung Galaxy? PhoneStateListner not working
I have an app that implements a PhoneStateListner. The code works on all phones except the AT&T Samsung Galaxy. Is there a special build for that phone? Does anyone know of a way, besides ...
3
votes
1answer
122 views
c# + Using dynamicmethod with an attribute
[CustomAttribute]
public bool IsGreen()
{
return true;
}
How could one write the above using a DynamicMethod in c#?
UPDATE; per casperOne you cannot do this with a custom attribute.
But what ...
3
votes
3answers
201 views
Step-by-step execution for Intel AT&T assembler?
I'm writing a compiler that converts source code (written in a small imperative programming language) to Intel AT&T 32-bit assembler.
I tend to spend a lot of time debugging, because of nasty ...
2
votes
2answers
237 views
Help on VGA and putpixel intel x86 asm AT&T syntax
I want to draw a colored line in asm. I have to use AT&T syntax, on an x86 intel linux unit.
I got pretty far already, but I'd like to know how to enter VGA-mode, or Mode-X, and how to put a ...
2
votes
1answer
382 views
Force SMS messages sent from static email address to use the same number (AT&T example)
This specific example is using AT&T as the carrier of the receiver.
When sending SMS messages to clients via their carrier email address (1234567890@txt.att.net) from a static email address, ...
2
votes
1answer
597 views
movq assembly function
I was reading some code and was not sure what this line does
movq (%rsp), %rsp
Thanks
2
votes
1answer
68 views
How can I prepend a `SS:` or `ES:` using AT&T Assembly Syntax
How can I prepend a SS: or ES: using AT&T Assembly Syntax without adding in a .byte 0x36 or .byte 0x26?
ie. How would I be able to convert mov dword ptr ss:[esp+0x10], offset foo from Intel ...
2
votes
2answers
731 views
Intel and AT&T assembly syntax highlighting in TextMate
How do I get Intel and AT&T assembly syntax highlighting in TextMate?
2
votes
2answers
175 views
AT&T inline syntax
can anyone show my the correct AT&T syntax to do what i'm doing below in INTEL
i've shown my attempts at AT&T, but they don't compile...
unsigned int CheckIfGenuineIntel(void)
{
unsigned ...
2
votes
2answers
387 views
Java Midlet Deployment
So, I've develop a simple hello world midlet using the Samsung SDK 1.1.2 and I've Packaged the midlet. Now I have two files (a JAR/JAD) combination. How do I get these installed on my phone?
As you ...
2
votes
2answers
291 views
How to translate “pushl 2000” from AT&T asm to Intel syntax on i386
I'm trying to translate the following from AT&T assembly to Intel assembly:
pushl 2000
Now this compiles down to:
ff 35 d0 07 00 00 pushl 0x7d0
But no matter what I try, I cannot get ...
1
vote
1answer
105 views
assembly conversion to basm
I'm trying to convert the CrapWOW Hash from http://www.team5150.com/~andrew/noncryptohashzoo/CrapWow.html to delphi or rather to basm. My asm skills are very limited, but i thought it wouldn't be too ...
1
vote
1answer
67 views
Does BIOS in Atom-32bit-intel board make IDT and GDT?
I have Atom-32bit-intel board n450 with only BIOS in it, my goal is to use APIC timer and linke it with an ISR (0x21).
After a while, I discoverd that IDT and GDT already exist(probably built by the ...
1
vote
4answers
140 views
Embed URL Link in SMS via PHP
Is there a way I can embed a URL link i.e. <a href='www.google.com'>google</a> in an SMS message send through [myphonenumber]@txt.att.net ? My mail configuration is set to "text/html" ...
1
vote
2answers
256 views
Which ASM style does g++ use
I was wondering which ASM style g++ uses (AT&T or Intel). I'm working on an assignment that requires me to provide definitions for various ASM instructions. I saw the below:
movl %esp, %ebp
...
1
vote
1answer
181 views
Acessing struct fields within an assembly X64 function
Is it possible to access directly struct fields within an assembly function? And how can i access via assembly an global variable?
in inline assembly on intel syntax i can do this:
struct str
...
1
vote
2answers
1k views
iPhone socket listener over cellular data
Is it possible for an iPhone (or any other device over a cellular network) to listen on a socket and wait for other iPhones to connect over AT&T network (P2P)? We are able to successfully do this ...
0
votes
2answers
79 views
NASM versus AT&T Syntax: what are the advantages?
I'm going through the Intel processor documentation and writing some basic assembly code at the same time. I have both nasm and as (GAS) on my server and I understand the basic differences of both ...
0
votes
1answer
30 views
Need a good source for AT&T Assembly Syntax
I'm looking for sources to study assembly with AT&T syntax(NOT Intel), any help would be appreciated.
Thanks.
0
votes
1answer
55 views
Inline Assembly - AT&T Syntax - How to move to a variable
So I'm working on a code cave where I basically replace a call to _memcpy with my jump, and then I want to save what is in the source. Original assembly:
mov [esp+8], edx ; size
mov ...
0
votes
0answers
81 views
AT&T Assembly Masked Input
I'm trying to create a simple password program in AT&T Assembly but i'm having trouble with masking an input. What i want to happen is when the user enters characters, they appear on the screen as ...
0
votes
1answer
50 views
what is the order of source operands in AT&T syntax compared to Intel syntax?
The Intel ISA reference documentation for this instruction is clear:
VPBLENDVB xmm1, xmm2, xmm3/m128, xmm4
"Select byte values from xmm2 and xmm3/m128 using mask bits in the specified mask register, ...
0
votes
0answers
172 views
Would putting my Nexus One phone in cyanogenmod unlock it for all GSM carriers? [closed]
So I have a Nexus One phone that's been unlocked for TMobile, and I wanted to know if putting it in cyanogenmod would actually unlock it for me to use AT&T's SIM on it. I'm not really worried if I ...
0
votes
1answer
219 views
Intel Vs. AT&T syntax when addressing xmm and floating instruction
Hello everyone
I am working on writing an assembly program and I would like to acquire some knowledge before I start on the looks of AT&T and Intel syntax when addressing xmm and fp. I know that ...
0
votes
2answers
107 views
Can you still test iPhone applications on an iPhone without a cell carrier?
I'm about to start doing some iPhone application development and it's important to me to be able to test my applications on actual devices before I put them on the marketplace. However, I am planning ...
-1
votes
1answer
967 views
IPhone 4 -without contract- AT&T Sim card [closed]
I have a AT&T cellphone and my 2 years contract has ended on AT&T. My AT&T sim card is still working and I can close my AT&T account anytime.
Now I need an iphone 4 for testing the ...