- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
someone kindly suggest a simplest way to make a pin high or low in verilog
the board i am using is DE2 115 thank youLink Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
module fpga_main {
out0,
out1,
// more i/o pins
};
output out0;
output out1;
assign out0 = 1'b0; //pin low
assign out1 = 1'b1; //pin high
// other code
endmodule

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page