Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Assembly Language. MASM. Using irvine32.inc Part 1 - Generate an array of formated characters In a procedure create a print a matrix that writes stores

Assembly Language. MASM. Using irvine32.inc

Part 1

- Generate an array of formated characters

In a procedure create a print a matrix that writes stores and writes out characters in a format that writes 4 characters per line and for 4 lines. For example:

ABCD EFGH IJKL MNOP

To do this write, create a matrix that can hold all the letters, and mark the end of the line store a new line character (0Dh,0Ah).

So your array will look something like this "ABCD",0Dh,0Ah,"EFGH",0Dh,0Ah, etc.

Then write the array out with call WriteString

Part 2 - Write out random letters using RandomRange

Using the commands mov eax, 26 call RandomRange ; in the irvine library and an array made up of all the letters in the alphabet Write out a 4 X 4 matrix that prints out 16 random letters taken from an alphabet matrix you created.

Part 3 - Randomly generate vowels or consonants

Using randomRange that selects 0 or 1. If the value is 0, have your list randomly print out a vowel, if the value returned is 1, have a randonly printed out consonant printed out.

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_2

Step: 3

blur-text-image_3

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

Database Design And Relational Theory Normal Forms And All That Jazz

Authors: Chris Date

1st Edition

1449328016, 978-1449328016

Students also viewed these Databases questions

Question

How is the moral hazard problem relevant to the health care market?

Answered: 1 week ago

Question

What Is acidity?

Answered: 1 week ago

Question

Explain the principles of delegation

Answered: 1 week ago

Question

State the importance of motivation

Answered: 1 week ago

Question

Discuss the various steps involved in the process of planning

Answered: 1 week ago

Question

What are the challenges associated with tunneling in urban areas?

Answered: 1 week ago

Question

How do modern Dashboards differ from earlier implementations?

Answered: 1 week ago