Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Fill in the blanks with the correct answer please. ; Program: Activity ; ; Author: ; ; Date: ; INCLUDE Irvine 3 2 . inc

Fill in the blanks with the correct answer please.
; Program: Activity
;
; Author:
;
; Date:
;
INCLUDE Irvine32.inc
INCLUDE macros.inc
.data
; 01234567
b BYTE 0,0,1,1,127,7Fh,255,0ffh
w WORD 0,1,7FFFh,0FFFFh
d DWORD 1,07fffffffh
.code
main PROC
mwriteln "negate [b+2] would give what? ___________"
;neg [b+2]
mshow [b+2], bn
movsx eax, [w+5]
mwrite "what is eax? _______________"
;mshow eax, hbn
call CRLF
add al,1
mwrite "what is eax? _______________"
;mshow eax, hbn
call CRLF
movsx eax, [w+7]
mwrite "what is eax? _______________"
;mshow eax, hbn
call CRLF
add ah,1
mwrite "what is eax? _______________"
;mshow eax, hbn
call CRLF
add ax,1
mwrite "what is eax? _______________"
;mshow eax, hbn
call CRLF
exit
main ENDP
END main

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Expert Oracle Database Architecture

Authors: Thomas Kyte, Darl Kuhn

3rd Edition

1430262990, 9781430262992

More Books

Students also viewed these Databases questions