From 9d36e78bc3df0f8a912d7786a92ed1d9ff00b603 Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Sat, 26 Mar 2022 13:18:20 -0400 Subject: [PATCH] Updated README.md --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c0cd67f..582e6ef 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,13 @@ # MASM-Low_Level_IO -Low Level I/O with String Primitives and Macros + +This program was my final project for **CS 271 - Computer Architecure and +Assembly Lanuage** at Oregon State University. It uses string primitives, macros +and procedures to perform low level I/O operations. + +## Program Description + +The program asks for 10 signed integers from the user as strings. The strings +are converted from ASCII to SDWORDs and stored in an array. Then, their sum, +and the truncated average are calculated. Finally, all numbers entered by the +user as well as the results are converted back to their ASCII representations +and printed as strings.