CMPS-2240 Lab-13

Gordon Griesel
Department of Computer and Electrical Engineering and Computer Science
California State University, Bakersfield

Introduction

This lab is a programming challenge. We will start by forming pair-programming teams. Here are the teams: Navigator Driver(s) --------- --------------- Huaiyu ------> Eliana Jarl --------> Carter Priscilla ---> Marlin Tyler -------> Miriam & Blain Issa --------> Preston Jose --------> Alia Eduardo -----> Christian Lilly -------> Carolina Andy --------> Raul Jennifer ----> Joshua Xander ------> Brian Moises ------> Monique Navigator - observes and reviews each line of code as it is typed. Driver - works the keyboard and writes the program code. Assignment:
Do your work in your Odin 2240/d directory. You can choose the MIPS or x86-64 assembly language. Name your MIPS program: xlab13.s Name your x86-64 program: xlab13.asm Programming task ---------------- Write a program that displays "Go Roadrunners" on the screen. Display the text 3-times. The program will pause for 1-second before each display of the text. Your program will run for 3-seconds total. Notes: Write beautiful source code. Provide a Makefile for an x86-64 program. Rules: No calls to external functions are allowed, except to display text such as syscall or printf. Optional: You may use a command-line argument to indicate how many times to display Go Roadrunners. These files will be collected... /2240/d/xlab13.c /2240/d/xlab13.s /2240/d/xlab13.asm /2240/d/Makefile