//----------------------------------------------------------------------
// IAS0150 - Homework #2. Test bench for the example task (simple).
//----------------------------------------------------------------------
// (C) Peeter Ellervee - 2026 - Tallinn
//----------------------------------------------------------------------

`timescale 1 ns / 1 ns

module test_single;
  logic [1:4] xi = 0;
  logic y1, y2, y3, y4;

  // Sequence 0000 ... 1111
  initial begin
    repeat (16) #10 xi++;
    $stop;
  end

  fs_table u1 (xi[1], xi[2], xi[3], xi[4], y1, y2, y3, y4);

endmodule
