x86

suggest a 8086 project

It's required from me to suggest an assembly project (not too simple and not too complex) tol be written for Intel 8086 microprocessor. One of the suggested projects was a calculator doing normal operations. Can anyone suggest another project? Simple clarification: that the idea of this project shall be implemented on the pc not usin...

X86 inline assembly, writing into C array

Assembly info: Using Visual Studio 2010 to write inline assembly embedded into C Hello, I am trying to write into an array of chars in C and trying to mimic the action of this C code: resNum[posNum3] = currNum3 + '0'; currently this is what i have: mov ebx, posNum3; mov resNum[ebx], edx; //edx is currNum3 add resNum[ebx], 48; // a...