├── .github └── workflows │ └── build.yaml ├── LICENSE ├── README.md ├── chip.json ├── diagram.json ├── docs └── README.md └── src ├── main.c └── wokwi-api.h /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dlloydev/Wokwi-Chip-Scope/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dlloydev/Wokwi-Chip-Scope/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dlloydev/Wokwi-Chip-Scope/HEAD/README.md -------------------------------------------------------------------------------- /chip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dlloydev/Wokwi-Chip-Scope/HEAD/chip.json -------------------------------------------------------------------------------- /diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dlloydev/Wokwi-Chip-Scope/HEAD/diagram.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dlloydev/Wokwi-Chip-Scope/HEAD/docs/README.md -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dlloydev/Wokwi-Chip-Scope/HEAD/src/main.c -------------------------------------------------------------------------------- /src/wokwi-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dlloydev/Wokwi-Chip-Scope/HEAD/src/wokwi-api.h --------------------------------------------------------------------------------