Verilog2factorio
This project will compile verilog (a hardware description language) into factorio blueprints.
Install / Use
/learn @Redcrafter/Verilog2factorioREADME
Factorio verilog compiler
This project will compile verilog (a hardware description language) into factorio blueprints.
Using this it should also be possible to compile vhdl. (not tested)
Web Demo
You can check out the web demo here.
Install
Manually compile Yosys 0.34 (later releases might not work) and add it to your PATH.
Run npm install to install all dependencies.
Usage
Usage: v2f [options] <files..>
Options:
-v, --verbose
-d --debug Generate debug information. (A graph of the output circuit.)
-o, --output <file> File to output the compiled blueprint to.
-m, --modules <names...> Verilog modules to output blueprint for. (defaults to all).
-f, --files <files...> List of Verilog files to compile. (only has to be explicitly specified after -m).
-g, --generator [type] Layout generator to use. annealing(default),matrix,chunkAnnealing
-h, --help Display this information.
Quick Start
Run ./v2f with verilog files as parameters. Example: ./v2f ./samples/counter.v
The compiled blueprint will be output on the command line unless otherwise specified with -f.
The circuit will have inputs and outputs at the top in the order in which they were written in the code. Clock pulses are required to be exactly one tick high. (since adding edge detectors would produce a lot of overhead)
Examples
samples/counter.v
module counter(input clk, input rst, input inc, output reg [3:0] cnt);
always @(posedge clk) begin
if (rst)
cnt <= 0;
else if (inc)
cnt <= cnt + 1'b1;
end
endmodule

At the top in order clk, rst, inc and cnt.
6502 CPU from https://github.com/Arlet/verilog-6502/
using the new layout method "chunkAnnealing"
Related Skills
node-connect
348.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
108.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
348.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
348.0kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
