Fix space invaders

slava 2006-08-12 19:56:57 +00:00
parent 994fc7d38b
commit aa0fb00d76
2 changed files with 4 additions and 3 deletions

View File

@ -20,8 +20,9 @@
! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
USING: kernel math sequences errors vectors prettyprint io namespaces arrays
words parser hashtables lazy-lists parser-combinators strings ;
USING: kernel math sequences errors vectors prettyprint io
namespaces arrays words parser hashtables lazy-lists
kernel-internals parser-combinators strings ;
IN: cpu-8080
TUPLE: cpu b c d e f h l a pc sp halted? last-interrupt cycles ram ;

View File

@ -20,7 +20,7 @@
! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
USING: alien cpu-8080 errors generic io kernel
USING: alien cpu-8080 errors generic io kernel kernel-internals
math namespaces sequences styles threads gadgets gadgets opengl arrays
concurrency ;
IN: space-invaders