Stub for UDP logic devices
This commit is contained in:
parent
baa2363e85
commit
db339b8fc3
|
|
@ -93,6 +93,11 @@ static void bufif_logic(vhdl_arch *arch, ivl_net_logic_t log, bool if0)
|
||||||
arch->add_stmt(cass);
|
arch->add_stmt(cass);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void udp_logic(vhdl_arch *arch, ivl_udp_t udp)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
static vhdl_expr *translate_logic_inputs(vhdl_scope *scope, ivl_net_logic_t log)
|
static vhdl_expr *translate_logic_inputs(vhdl_scope *scope, ivl_net_logic_t log)
|
||||||
{
|
{
|
||||||
switch (ivl_logic_type(log)) {
|
switch (ivl_logic_type(log)) {
|
||||||
|
|
@ -127,6 +132,9 @@ void draw_logic(vhdl_arch *arch, ivl_net_logic_t log)
|
||||||
case IVL_LO_BUFIF1:
|
case IVL_LO_BUFIF1:
|
||||||
bufif_logic(arch, log, false);
|
bufif_logic(arch, log, false);
|
||||||
break;
|
break;
|
||||||
|
case IVL_LO_UDP:
|
||||||
|
udp_logic(arch, ivl_logic_udp(log));
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
// The output is always pin zero
|
// The output is always pin zero
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue