For programming and/or microarchitecture questions about the 16-bit x86 Intel CPUs, including the 8088, 8086, and later chips running in 16-bit mode.
I understand the from the terms that RCR would rotate the bit from the right to left, taking the bit …
x86-16 assemblyFor a one digit number, I want to know if it's odd or even (multiple of 2). For example, given 9, print …
assembly x86-16 parityI am a beginner in 8086 assembly language. I can understand the logic used in the program and write small programs …
assembly masm x86-16The movsb (move string, bytes) instruction fetches the byte at address ds:si, stores it at address es:di, and …
assembly x86-16 cpu-registers addressing-mode memory-segmentationAssume I want to multiply a large number by another (maybe small) number in assembly. The big number (multiplicand) is …
assembly x86-16 bigint extended-precisionI am working on an embedded systems project and have run into an issue of the compiler being programatically embedded …
c++ compiler-construction embedded x86-16I'm trying to make a subprogram in assembly which will draw a square on the screen. I don't think I …
assembly x86 cpu-registers x86-16