Guest
#4255299
Hello, I've bought a lattice icestick (http://www.latticesemi.com/icestick) and programmed it with iceprog (http://www.clifford.at/icestorm/) with the following verilog code: example.v: module top (input a, b, output y); assign y = a & b; endmodule example.pcf: set_io a 1 set_io b 10 set_io y 11 All works great, but I don't know how to interact with this small circiut on my FPGA. How can I (for example) send a 1 for the a-input and another 1 to the b-input and then getting a 1 from the FPGA back. Do I need a special program for this or something like that? Thank you for your support. Sincerely, Banane