Assembly Language New Line
I'm brand new to assembly language programming, and I would like my output to have separate lines so that it is easier to read, however, I wrote my code and had it working, but was then informed that I could not in fact use the Irvine procedure to make a new line. My text book only uses the Irvine "Crlf" and the code from other people who asked similar questions on this website completely broke my program so now I'm lost. One I attempted was: mov ah, 0Eh ;print new line sequence mov al, 0Dh int 10h mov al, 0Ah int 10h Anyways, here is my complete code with the Irvine function still. Can