make nets keep list of updated gates instead of ports

This commit is contained in:
Redo0
2021-05-25 20:22:02 -05:00
parent e92cc50186
commit c62d7340b0
7 changed files with 82 additions and 80 deletions

View File

@@ -1,15 +1,6 @@
Gate = {}
FFI.cdef[[
struct Gate {
int objref;
int definition_objref;
bool in_queue;
struct Port ports[1];
};
]]
function Gate.new(objref, definition)
local o = {
objref = objref,