Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试使用 VHDL 语言在 spartan 3 fpga 上的 7 段 LED 显示屏上显示两个不同的变量。这是我在大学的最后一年项目,我真的很挣扎。有人可以帮忙吗?:(
这是给你的代码:
if (Swtich_1 = '1') then Seven_Seg <= Date_Time; else Seven_seg <= Temperature; end if;
这就是你所需要的:)
有几件事你需要注意
希望能帮助到你....
Switch 是一个 C 保留字。对于 VHDL,您需要使用 case 来代替。