-T.K.-

Results 9 comments of -T.K.-

Try adding the architecture flag `march` and `mabi` to GCC to override the ones set in nano spec. For example: ```bash riscv64-unknown-elf-gcc -fno-common -fno-builtin-printf -specs=htif_nano.specs -march=rv32imafc -mabi=ilp32f -c hello.c riscv64-unknown-elf-gcc...

> Uploading k510 memory map.pdf… I'm not sure if the link is working...

Encountered same issue here. Setting the password to `""` hack works.

I have run into similar issue when building for Arty FPGA designs. I think TinyCore requires a vastly different configuration for the memory system compared to other Core Configs. If...

![image](https://github.com/ucb-bar/chipyard/assets/26409587/619383ba-ed6b-4ab9-b7e3-35a0e6a33712) Note that the conda prints are overwriting the previous terminal outputs, the cursor is on the top, and the terminal will freeze for ~15 minutes

A preliminary implementation for those who need the functionality now: ```python import struct import serial port = "/dev/ttyUSB3" baudrate = 115200 ser = serial.Serial(port=port, baudrate=baudrate) CMD_READ = 0x00 CMD_WRITE =...

An alternative would be to let the script always deactivate to base environment before touching the conda env configs?

Hi, The memory address of CLINT and PLIC is specified by the RISC-V specification to be fixed at `0x0200_0000` and `0x0C00_0000`, respectively. For other memory devices like BootROM, UART, etc.,...

Hi, I'm installing gym and mujoco by running pip install gym[mujoco] without version specifications. The version I see is 0.26.1. I just tried with a new Ubuntu install, now the...