Nand2Tetris course artifacts: assembler, VM compiler and more
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
module Main (main) where |
|
import Test.Hspec (hspec, Spec, describe) |
|
|
|
import qualified Test.Nand2Tetris.VM as VM |
|
|
|
main = hspec spec |
|
|
|
spec :: Spec |
|
spec = do |
|
describe "VM" VM.spec |
|
|
|
|
|
|