請問這是什麼意思...我剛學...連編譯器都看不懂怎麼用...
星期五12/9 要交作業了...拜託幫個忙吧..
.data
x1 QWORD 0A02B000190008400h
x2 QWORD 0800187008000A904h
sum BYTE 9 DUP(?)
1. Write an assembly program to do an extended addition of two integers
2. You may assume that the two integers are unsigned
3. Use the DumpMem (described in textbook pages 141-146) in Irvine32.inc
to display the sum.
4. Note that the integers are stored in little-endian order in the memory.
5. The instructions that may be used :
(1.)ADC : Add with carry flag, for example:
ADC dest source ; dest = dest + source + CF
(2.)CLC : Clear Carry Flag, means Set CF = 0
(3.)STC : Set Carry Flag, means Set CF = 1