Questions tagged [jasmin-x86]

The Java Assembler Interpreter is a learning tool for x86 assembler developed at the Technical University of Munich. Not to be confused with [jasmin].

The Java Assembler Interpreter (Jasmin) is a learning tool for x86 assembler developed at the Technical University of Munich.

It should not be confused with , an assembler for the Java Virtual Machine.

2 questions
4
votes
3 answers

IDE Tool choice - cross platform x86 ASM debugging

I'm writing a teaching tutorial to teach university students and programming enthusiasts Compilation concepts on an x86. I want an IDE tool like WinASM for them to be able to debug their work, but am aware that they may not all run Windows at…
hawkeye
  • 34,745
  • 30
  • 150
  • 304
-1
votes
1 answer

microprogram assembler (jasmin)

what does this command do in assambly ? mov ebx, [eax+ecx*4+12] does it do the same of the following ? MOV EBX,ECX ADD EBX,EBX ; *2 ADD EBX,EBX ; *4 ADD EBX,EAX ADD EBX,12 MOV EBX,[EBX] if yes why do they don't give the same result in Jasmin when…
Elteroooo
  • 2,913
  • 3
  • 33
  • 40