From 59fa19dce055000f67b54d55a67ce3d6c35f39ac Mon Sep 17 00:00:00 2001 From: sejo Date: Fri, 7 Jan 2022 17:34:44 -0600 Subject: [PATCH] removed mouse mention --- src/uxn_tutorial_day_6.gmo | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/uxn_tutorial_day_6.gmo b/src/uxn_tutorial_day_6.gmo index 8fdfcf51..c2607f01 100644 --- a/src/uxn_tutorial_day_6.gmo +++ b/src/uxn_tutorial_day_6.gmo @@ -33,7 +33,6 @@ let's start with the following program as a template. it includes the data for a |00 @System [ &vector $2 &pad $6 &r $2 &g $2 &b $2 ] |20 @Screen [ &vector $2 &width $2 &height $2 &auto $1 &pad $1 &x $2 &y $2 &addr $2 &pixel $1 &sprite $1 ] |80 @Controller [ &vector $2 &button $1 &key $1 ] -|90 @Mouse [ &vector $2 &x $2 &y $2 &state $1 &wheel $1 ] ( macros ) %RTN { JMP2r } @@ -174,7 +173,6 @@ the following shows our program in context, completely filling the first row of |00 @System [ &vector $2 &pad $6 &r $2 &g $2 &b $2 ] |20 @Screen [ &vector $2 &width $2 &height $2 &auto $1 &pad $1 &x $2 &y $2 &addr $2 &pixel $1 &sprite $1 ] |80 @Controller [ &vector $2 &button $1 &key $1 ] -|90 @Mouse [ &vector $2 &x $2 &y $2 &state $1 &wheel $1 ] ( macros ) %RTN { JMP2r } @@ -570,7 +568,6 @@ omitting the definition of the subroutines, and as a way of having a checkpoint, |00 @System [ &vector $2 &pad $6 &r $2 &g $2 &b $2 ] |20 @Screen [ &vector $2 &width $2 &height $2 &auto $1 &pad $1 &x $2 &y $2 &addr $2 &pixel $1 &sprite $1 ] |80 @Controller [ &vector $2 &button $1 &key $1 ] -|90 @Mouse [ &vector $2 &x $2 &y $2 &state $1 &wheel $1 ] ( macros ) %RTN { JMP2r } @@ -1292,7 +1289,6 @@ here's all of the code we wrote today! |20 @Screen [ &vector $2 &width $2 &height $2 &auto $1 &pad $1 &x $2 &y $2 &addr $2 &pixel $1 &sprite $1 ] |80 @Controller [ &vector $2 &button $1 &key $1 ] -|90 @Mouse [ &vector $2 &x $2 &y $2 &state $1 &wheel $1 ] ( macros ) %RTN { JMP2r }