Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Write the dispatch() program that will support multitasking on processing simula

ID: 669531 • Letter: W

Question

Write the dispatch() program that will support multitasking on processing simulator . The processing simulator is written in Python, and simulates a fairly conventional computer/CPU architecture to support multitasking for two distinct processes. Your dispatch() program will be written in the system assembly language

I got the process simulator writen in python. I need to write an assembly program to support multitasking. main goal is for dispatch() program to be able to handle all of the provided test programs correctly when multitasking. It programs should also be able to handle other valid programs if provided

Explanation / Answer

main proc

mov ax,messgae

move dx,ax

move ah 09

lea dx

int 21h

move ax

int 21h

main endp

end main