Added era.mi; Project containing provisional simulator core
authorFabian Stemmler <stemmler@in.tum.de>
Tue, 7 May 2019 11:32:29 +0000 (13:32 +0200)
committerFabian Stemmler <stemmler@in.tum.de>
Tue, 7 May 2019 11:32:29 +0000 (13:32 +0200)
commita4c5cfb856026771dfcf31eb22434b8b6ff20ad4
tree0b90544604b5c50f4db0581f3810fd281cc31ad0
parent7199371e42ba04d2daab9f8512fdf25bd5f5ff92
Added era.mi; Project containing provisional simulator core
43 files changed:
era.mi/.classpath [new file with mode: 0644]
era.mi/.project [new file with mode: 0644]
era.mi/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
era.mi/bin/era/mi/logic/Bit.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/Simulation.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/Util$BitOp.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/Util.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/WireArray.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/WireArrayObserver.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/BasicComponent.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/Clock.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/Merger.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/Merger2.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/Mux.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/Splitter.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/gates/AndGate.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/gates/NotGate.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/gates/OrGate.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/components/gates/XorGate.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/tests/ComponentTest.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/timeline/Timeline$InnerEvent.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/timeline/Timeline.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/timeline/TimelineEvent.class [new file with mode: 0644]
era.mi/bin/era/mi/logic/timeline/TimelineEventHandler.class [new file with mode: 0644]
era.mi/src/era/mi/logic/Bit.java [new file with mode: 0644]
era.mi/src/era/mi/logic/Simulation.java [new file with mode: 0644]
era.mi/src/era/mi/logic/Util.java [new file with mode: 0644]
era.mi/src/era/mi/logic/WireArray.java [new file with mode: 0644]
era.mi/src/era/mi/logic/WireArrayObserver.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/BasicComponent.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/Clock.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/Merger.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/Merger2.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/Mux.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/Splitter.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/gates/AndGate.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/gates/NotGate.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/gates/OrGate.java [new file with mode: 0644]
era.mi/src/era/mi/logic/components/gates/XorGate.java [new file with mode: 0644]
era.mi/src/era/mi/logic/tests/ComponentTest.java [new file with mode: 0644]
era.mi/src/era/mi/logic/timeline/Timeline.java [new file with mode: 0644]
era.mi/src/era/mi/logic/timeline/TimelineEvent.java [new file with mode: 0644]
era.mi/src/era/mi/logic/timeline/TimelineEventHandler.java [new file with mode: 0644]