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)
commit7f0a08228f5c517aa1aa22453c1b0dd533e4cd04
tree5b0e8ebb58d9fb9a276c4f6ce71c16888e0d79e4
parentee53fa401e5856d99d976f9920237a4d2b03f2ca
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]