Questions tagged [i386]

Use i386 tag for questions related to 32-bit implementation of x86 ISA

The 32-bit version of x86 instruction set architecture (ISA) is now called i386, after Intel's first 32-bit processor, the 80386, which is also known as i386.

For general x86 ISA questions, which are not specific to 32/64 bits, use tag instead.

279 questions
0
votes
1 answer

What's the meaning of this?(size and offset)

Loading/Storing The IDT is loaded using the LIDT assembly instruction. It expects the location of a IDT description structure: The offset is the virtual address of the table itself. The size is the size of the table subtracted by 1. This structure…
Jimmy
  • 353
  • 3
  • 10
0
votes
2 answers

iphone missing required architecture i386

I am getting this error for one of my project to use a static library. The project runs well in iOS device. But not in simulator. The static library is not mine, so I cannot recompile it for i386. But this is a hardware driver, for iPhone. So when…
karim
  • 15,408
  • 7
  • 58
  • 96
0
votes
2 answers

Intel: Computing Floating Point Numbers

I am reading "Numerical Recipes in C The Art of Scientific Computing", and in chapter one there is a section which discusses how floating point numbers are represented from a somewhat architecture agnostic standpoint. This post pertains to the i386…
Matthew Hoggan
  • 7,402
  • 16
  • 75
  • 140
0
votes
1 answer

NASM - Selection sort implementation doesn't work

The problem with segmentation fault has been solved, however there still remains a question of faulty algorithm itself which sorts numbers correctly but puts some of the biggest ones on the top of the file. For example numbers: …
user1832258
  • 51
  • 1
  • 5
0
votes
1 answer

Undefined symbols for architecture i386: "_OBJC_CLASS_$_SDZInfo" (sudzc)

I'm developing an application with XCode 4.1.1 I added the library from http://sudzc.com/ for consume web services. When I compile the application, it gives this error: Undefined symbols for architecture i386: "_OBJC_CLASS_$_SDZInfo", referenced…
jMiguel LA
  • 330
  • 1
  • 2
  • 17
0
votes
2 answers

RPM is not working with i386 (rhel6) but it works with x86_64(rhel5)

While installing the package Test-5.0-201208280707.amd64.rpm I have a 64 bit RHEL 6 Machine and it's architecture is i386 : # cat /etc/redhat-release Red Hat Enterprise Linux Server release 6.3 (Santiago) # rpm --eval '%{_arch}' i386 When I try to…
anish
  • 6,884
  • 13
  • 74
  • 140
0
votes
0 answers

JNI_CreateJavaVM with jre 64bits

I'm developing a Qt project on OS X. I'm using Jni and include the header jni.h present in the Java jdk. I'm using the function JNI_CreateJavaVM to create the vm, whose symbols are in the libclient.dylib (libjvm.dylib is the symbol link). The…
Christophe
  • 958
  • 12
  • 20
0
votes
2 answers

Code sign error XCode 4.2

i386: No such file or directory Command /usr/bin/codesign failed with exit code 1 I'm getting this error and can't figure out why. My valid architectures are set to armv6 armv7 i386. The project builds and runs fine on the iPad and iPhone…
-1
votes
1 answer

How to install i386 gcc cross compiler on linux

Hi, how can i download i386 elf cross compiler on linux i need: i386-elf-gcc i386-elf-ld what commands i need to write in to cmd to get this packages? Please help me!
Solindek
  • 19
  • 5
-1
votes
1 answer

syscall write not printing correctly the given string

I'm simply trying to read a number from 0 up to 9 and subtract 4 from it, store the value in a table, then print it to the terminal. It kinda works, but for some reason when I print "bye!" at the end of the program it prints "eye!". Also, for some…
mateus.md
  • 23
  • 5
-1
votes
1 answer

Homebrew linking fails with incompatible i386 files already on machine

I'm hitting this error with anything I have tried to install. The machine is running redhat and devops has installed newer versions of programs/components in non-standard locations. I only have user level access. I have forced homebrew to use…
Kodakrome
  • 1
  • 1
-1
votes
1 answer

Is this page directory valid?

I'm unsure of my understanding of paging. I'd like to check, by creating a hypothetical page directory, and asking the community to point out my mistakes along the way. Let's suppose that the kernel code fits into the first frame - 0x0000 to 0x1000,…
-1
votes
2 answers

Emulating a 386

I'm applying for a contest that challenges people to write a program for a classical computer. I will apply with a PC/MS-DOS entry. The rules permit using a CPU up to a 386. I'm been investigating a little and I've found that the most powerful 386…
davidcm
  • 165
  • 3
  • 11
-1
votes
1 answer

Assembly 2-dimentional array why addresses do not differ by the same number

I created a simple two-dimentional array in C and passed a pointer to the assembly function. I wanted to process elements from this array with assembly function. My problem is that I do not understand (perhaps it is my mistake) why addresses of…
Joanna
  • 154
  • 2
  • 13
-1
votes
1 answer

Raising BRK in assembly on i386 Linux

I found and studied x86 memory access segmentation fault and it won't work in my code. The difference perhaps being that I don't use separate .text and .data segments but keep all in a single segment by creating a custom ELF header. Does that…
LNoor
  • 91
  • 4
1 2 3
18
19