-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Makefiles and rename folders and code filenames
- Loading branch information
1 parent
828437e
commit d40861c
Showing
28 changed files
with
55 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
TARGET:=i2c | ||
TARGET:=i2c-comm | ||
|
||
include ../ch32v003fun/ch32v003fun.mk | ||
clean: | ||
rm -f $(TARGET).elf $(TARGET).hex $(TARGET).bin $(TARGET).map $(TARGET).lst \ | ||
$(TARGET).o $(TARGET).d $(TARGET).srec $(TARGET).sym $(TARGET).lss | ||
|
||
.PHONY: clean |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# paint-cursor | ||
|
||
## Description | ||
`paint-cursor.c`: | ||
* Draw images on InspireMatrix with direction buttons and matrix buttons | ||
* Color is hard-coded in the following, change the value in ```paint-cursor.c``` for different colors | ||
|
||
* `paint-cursor.c`: | ||
* Draw images on InspireMatrix with direction buttons and matrix buttons | ||
* Color is hard-coded in the following, change the value in ```paint-cursor.c``` for different colors |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
# RISC-V Disassembler | ||
|
||
RISC-V Disassembler with support for RV32/RV64/RV128 IMAFDC | ||
|
||
## Build instructions | ||
|
||
```bash | ||
cmake -B build | ||
cmake --build build | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
/** | ||
* Originally from `t2.c`. | ||
*/ | ||
|
||
#include <stdio.h> | ||
|
||
#include "riscv-disas.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
TARGET:= testing | ||
TARGET:=testing | ||
include ../ch32v003fun/ch32v003fun.mk | ||
clean: | ||
rm -f $(TARGET).elf $(TARGET).hex $(TARGET).bin $(TARGET).map $(TARGET).lst $(TARGET).o $(TARGET).d $(TARGET).srec $(TARGET).sym $(TARGET).lss | ||
rm -f $(TARGET).elf $(TARGET).hex $(TARGET).bin $(TARGET).map $(TARGET).lst \ | ||
$(TARGET).o $(TARGET).d $(TARGET).srec $(TARGET).sym $(TARGET).lss | ||
$(MAKE) -f Makefile-emulator clean | ||
|
||
emulator: | ||
$(MAKE) -f Makefile-emulator clean | ||
$(MAKE) -f Makefile-emulator | ||
|
||
.PHONY: emulator | ||
.PHONY: emulator clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters