nand2/07_Operating_System/08_StdIO_Test
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00
..
Array.jack added v2.0 2023-01-11 23:04:57 +01:00
GPIO.jack added v2.0 2023-01-11 23:04:57 +01:00
Main.jack added v2.0 2023-01-11 23:04:57 +01:00
Makefile added v2.0 2023-01-11 23:04:57 +01:00
Math.jack added v2.0 2023-01-11 23:04:57 +01:00
Memory.jack added v2.0 2023-01-11 23:04:57 +01:00
Readme.md added v2.0 2023-01-11 23:04:57 +01:00
Readme.md.backup added v2.0 2023-01-11 23:04:57 +01:00
StdIO.jack added v2.0 2023-01-11 23:04:57 +01:00
String.jack added v2.0 2023-01-11 23:04:57 +01:00
Sys.jack added v2.0 2023-01-11 23:04:57 +01:00
UART.jack added v2.0 2023-01-11 23:04:57 +01:00

StdIO.jack

A library of functions for text based input and output over UART.


Project

  • Implement StdIO.jack.

  • Run StdIO_Test in real hardware on iCE40HX1K-EVB using a terminal program connected to UART.

  • Compare your terminal output with:

    StdIO test:
    Please press the number '3': 
    ok
    readLine test:
    (Verify echo and usage of 'backspace')
    Please type 'JACK' and press enter: JACK
    ok
    readInt test:
    (Verify echo and usage of 'backspace')
    Please type '-32123' and press enter: -32123
    ok
    
    Test completed successfully