This would greatly help with simulating mixed-language projects, which could look like the following: Verilog testbench (which should be possible now): 1. Use yosys to synthesize the modules (which may be a mix of Verilog and VHDL sources) 2. `write_verilog` the top module. 3. Use Icarus Verilog with the Veriog testbench, which instantiates the device under test from the output of the yosys synthesis. VHDL testbench (which would be made possible by the command suggested above): 1. Use yosys to synthesize the modules (which may be a mix of Verilog and VHDL sources) 2. `ghdl_write_vhdl` the top module. 3. Use GHDL with the VHDL testbench, which instantiates the device under test from the output of the yosys synthesis.