home *** CD-ROM | disk | FTP | other *** search
- ;******************************************************
- ;TITLE: GOAL.ASM
- ;CREATED BY: Intelligent Technologies
- ;DESCRIPTION: Move the IBot from starting position #1 on the
- ; Arena locale to the goal
- ;NOTES: This program is designed only for the Arena locale
- ;Name Date Description
- ;---------------- ------------- -------------------
- ;ITI July 22, 1995 created the program
- ;******************************************************
-
- .NAME "Goal"
-
- Find_Goal
- COPR #ChassisMove,#3 ;move IBot 3 units
- COPR #ChassisTurn,#90 ;turn IBot chassis 90 degrees - turn right
- COPR #ChassisMove,#3 ;move IBot 3 units
- COPR #ChassisTurn,#270 ;turn IBot chassis 270 degrees - turn left
- COPR #ChassisMove,#15 ;move IBot 15 units
- COPR #ChassisTurn,#90 ;turn IBot chassis 90 degrees - turn right
- COPR #ChassisMove,#4 ;move IBot 4 units
- HALT
-