summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/nltypes.h
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-05-19 22:14:16 +0200
committer couriersud <couriersud@gmx.org>2020-05-20 07:59:46 +0200
commite9a364dcc960736905bc602ccb47848a4d930945 (patch)
tree56783144c9c43a118e3e85dea737c97c459ff891 /src/lib/netlist/nltypes.h
parent11af744ef3ed55003b54dec339b49f651c369965 (diff)
netlist: Add tristate support for rom devices. [Couriersud]
Rom and prom devices now properly support tristate outputs. Native OC output still on the todo list. In addition this commit fixes a number of bugs around dealing with macro level parameters and improves documentation by adding a parameter table. Also srcclean.
Diffstat (limited to 'src/lib/netlist/nltypes.h')
-rw-r--r--src/lib/netlist/nltypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/nltypes.h b/src/lib/netlist/nltypes.h
index 7b45155ccfe..77ea077a089 100644
--- a/src/lib/netlist/nltypes.h
+++ b/src/lib/netlist/nltypes.h
@@ -202,7 +202,7 @@ namespace netlist
{
return NLTIME_FROM_NS(N == 0 ? value0 :
N == 1 ? value1 :
- value2);
+ value2);
}
};
@@ -211,7 +211,7 @@ namespace netlist
/// See the 74125 implementation
///
template <std::size_t V>
- using desc_const = std::integral_constant<std::size_t, V>;
+ using desc_const = std::integral_constant<std::size_t, V>;
};