User Tools

Site Tools


notes:fall2024:projects:magx

This is an old revision of the document!


Table of Contents

MAGX

the game

The game criteria is intentionally very open-ended. The goal is to make a game that incorporates logic into a fun challenge. Thus far, many students are opting to adapt a game that already exists, but one could design a game from scratch if they so desired.

Logic

For refresher, there are seven logic operations one will want to make use of. This includes:

AND OR XOR

NOT

NAND NOR XNOR

AND

 A B | Y
 ----|--
 0 0 | 0
 1 0 | 0
 0 1 | 0
 1 1 | 1
 

OR

 A B | Y
 ----|--
 0 0 | 0
 1 0 | 1
 0 1 | 1
 1 1 | 1
 

XOR

 A B | Y
 ----|--
 0 0 | 0
 1 0 | 1
 0 1 | 1
 1 1 | 0
 

NOT

 A | Y
 --|--
 0 | 1
 1 | 0
 

NAND

 A B | Y
 ----|--
 0 0 | 1
 1 0 | 1
 0 1 | 1
 1 1 | 0
 

NOR

 A B | Y
 ----|--
 0 0 | 1
 1 0 | 0
 0 1 | 0
 1 1 | 0
 

XNOR

 A B | Y
 ----|--
 0 0 | 1
 1 0 | 0
 0 1 | 0
 1 1 | 1
notes/fall2024/projects/magx.1730326314.txt.gz · Last modified: 2024/10/30 22:11 by gsalce