This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make VERSION=full | |
../misc/yis sdriver.yo | |
../misc/yis ldriver.yo | |
(cd ../y86-code; make testpsim) | |
(cd ../ptest; make SIM=../pipe/psim TFLAGS=-i) | |
./correctness.pl -p |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.*; | |
import java.applet.*; | |
import java.awt.event.*; | |
import java.util.ArrayList; | |
public class Space_Fighters extends Applet implements Runnable, KeyListener{ | |
Graphics bufferGraphics; | |
Image offscreen; |