What sort of simulator is required to go from “running” to ordering a prototype board 26 days later? I had assumed physical breadboards and wires and chips were always necessary to prototype... 2019-11-02 The first version of the MyNOR simulator is running. The circuit works! 2019-11-17 I have finished the work on the microcode. I added support for MyNOR to my cross-assembler myca. 2019-11-28 PCB layout completed. A…
MyNOR: Single board computer that uses a single NOR gate as its ALU
21–30 of 70 posts
Re: MyNOR: Single board computer that uses a single NOR gate as its ALU
#22What sort of simulator is required to go from “running” to ordering a prototype board 26 days later? I had assumed physical breadboards and wires and chips were always necessary to prototype... 2019-11-02 The first version of the MyNOR simulator is running. The circuit works! 2019-11-17 I have finished the work on the microcode. I added support for MyNOR to my cross-assembler myca. 2019-11-28 PCB layout completed. A…
Re: MyNOR: Single board computer that uses a single NOR gate as its ALU
#23Re: MyNOR: Single board computer that uses a single NOR gate as its ALU
#24I wonder how this ALU works. From what I remember ALUs use lot of XOR gates because an adder is simply a network of XOR gates with carry propagation. How could a NOR gate do one bit addition? Add two bits ... XOR ... NOR 0 + 0 = 0...........0...........1 0 + 1 = 1...........1...........0 1 + 0 = 1...........1...........0 1 + 1 = 0...........0...........0
From the website: http://www.mynor.org/downloads/NOR-Logic.pdf
Re: MyNOR: Single board computer that uses a single NOR gate as its ALU
#25Re: MyNOR: Single board computer that uses a single NOR gate as its ALU
#26Re: MyNOR: Single board computer that uses a single NOR gate as its ALU
#27What sort of simulator is required to go from “running” to ordering a prototype board 26 days later? I had assumed physical breadboards and wires and chips were always necessary to prototype... 2019-11-02 The first version of the MyNOR simulator is running. The circuit works! 2019-11-17 I have finished the work on the microcode. I added support for MyNOR to my cross-assembler myca. 2019-11-28 PCB layout completed. A…
PCBs can be made cheaply and on short notices these days (I can get 5-off a 4-layer PCB for $200 in 4 days, and that extends both cheaper if I can wait longer and shorter if I want to pay more), and solderless breadboards are atrocious for almost anything I'd want to prototype (the parasitic capacitances, inductances, and resistances are all really bad. sensitive analog circuits, high-speed digital, and power electronics all suffer badly from those).
Re: MyNOR: Single board computer that uses a single NOR gate as its ALU
#28It is possible to build a CPU without a single gate: http://www.inf.fu-berlin.de/inst/ag-ki/rojas_home/documents/...
Re: MyNOR: Single board computer that uses a single NOR gate as its ALU
#29Re: MyNOR: Single board computer that uses a single NOR gate as its ALU
#30Earlier quoted context omitted.
That’s just moving the composition between hardware and software - the equivalence still applies. I can build any logic (software) function out of a function that evaluates NOR.
False advertising, then, IMO.