Sean Cross

Results 286 comments of Sean Cross

I use this powershell script to build on Windows. Note that I use `musl.cc` for mingw on Windows: ```powershell param ( [Boolean]$submodules = $true, [switch]$debug = $false, [switch]$clean = $false...

Additionally, what other commands are available that are undocumented?

My view is that being able to network objects together is a big draw of Renode, and having these commands undocumented hampers discoverability. The current approach for new users seems...

Wow, I didn't know `` was a thing. That's amazing. I also didn't know that `peripherals` got promoted to the root namespace -- for example, `sysbus.cpu` appears to be equivalent...

I believe I had a fundamental misunderstanding of how connections work. It seems like they do not allow making multiple connections between the same device. The SPI connection I have...

This does help, and it made me realise I was doing it the wrong way. I ended up creating a completely new kind of connector with a corresponding `CreateComConnector` call....

Admittedly, the interrupt feature was more aspirational. The base address is the more interesting and useful part of this request.

I've created `svd2repl` with the meat of it at https://github.com/betrusted-io/xous-core/blob/main/svd2repl/src/generate.rs I've added this to our build pipeline, so it generates the repl file directly (e.g. https://github.com/betrusted-io/xous-core/blob/main/emulation/soc/betrusted-soc.repl) Of particular note is...

Adding on to this, openram seems to take a very long time. `sky130_sram_1kbyte_1r1w_8x1024_8.py` has been running for an hour for me now. A process called `magicdnull` has 45 minutes of...

I hadn't seen that -- it's very handy, and I might take their SPI code.