flandreas / antares

Digital circuit learning platform
49 stars 6 forks source link

Circuit tests #657

Closed flandreas closed 1 year ago

flandreas commented 1 year ago

Provide a feature that allows the user to write test cases for circuits, which Antares then executes and displays the result.

Start with simple test vectors like this example for an AND function:

A B O
0 0 0
0 1 0
1 0 0
1 1 1

Later possibly add scripting support to support more complex test scenarios.