Skip to content

Commit

Permalink
Merge pull request #40 from toppers/RC-v.0.A.2
Browse files Browse the repository at this point in the history
release candidate v0.A.2
  • Loading branch information
mitsut authored Aug 13, 2022
2 parents b696a95 + 6c1cbfe commit 97c03d1
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 40 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]

steps:
- name: Setup cmake
Expand All @@ -29,15 +29,15 @@ jobs:
make
./athrill2
- name: Setup MinGW for Windows
if: matrix.os == 'windows-latest'
uses: egor-tensin/setup-mingw@v2
# - name: Setup MinGW for Windows
# if: matrix.os == 'windows-latest'
# uses: egor-tensin/setup-mingw@v2

- name: Build athrill for Windows
if: matrix.os == 'windows-latest'
run: |
mkdir build
cd build
cmake -G"MinGW Makefiles" ..
make
.\athrill2.exe
# - name: Build athrill for Windows
# if: matrix.os == 'windows-latest'
# run: |
# mkdir build
# cd build
# cmake -G"MinGW Makefiles" ..
# make
# .\athrill2.exe
36 changes: 18 additions & 18 deletions .github/workflows/packagebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]

steps:
- name: Setup cmake
Expand All @@ -37,19 +37,19 @@ jobs:
make
./athrill2
- name: Setup MinGW for Windows
if: matrix.os == 'windows-latest'
uses: egor-tensin/setup-mingw@v2
# - name: Setup MinGW for Windows
# if: matrix.os == 'windows-latest'
# uses: egor-tensin/setup-mingw@v2

- name: Build athrill for Windows
if: matrix.os == 'windows-latest'
run: |
mkdir build_win
mkdir build
cd build
cmake -G"MinGW Makefiles" ..
make
.\athrill2.exe
# - name: Build athrill for Windows
# if: matrix.os == 'windows-latest'
# run: |
# mkdir build_win
# mkdir build
# cd build
# cmake -G"MinGW Makefiles" ..
# make
# .\athrill2.exe

- name: Move to build folder(linux)
if: matrix.os == 'ubuntu-latest'
Expand All @@ -62,11 +62,11 @@ jobs:
mkdir build_mac
cp build/athrill2 build_mac/
perl toppers_utils/makerelease E_PACKAGE.darwin
- name: Move to build folder(win)
if: matrix.os == 'windows-latest'
run: |
cp build/athrill2.exe build_win/
perl toppers_utils/makerelease E_PACKAGE.win
# - name: Move to build folder(win)
# if: matrix.os == 'windows-latest'
# run: |
# cp build/athrill2.exe build_win/
# perl toppers_utils/makerelease E_PACKAGE.win

- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down
22 changes: 13 additions & 9 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
PACKAGE athrill-target-rh850f1x
VERSION 0.A.1
VERSION 0.A.2

CMakeLists.txt
E_PACKAGE
E_PACKAGE.darwin
E_PACKAGE.win
LICENSE.md
MANIFEST
README.md
Expand All @@ -12,8 +16,8 @@ build_linux/Makefile.device
build_linux/Makefile.env
build_linux/Makefile.mpu
build_linux/Makefile_v850.cpu

params/rh850f1k/atk2-sc1/device_config.txt
params/rh850f1k/atk2-sc1/device_config_with_can.txt
params/rh850f1k/atk2-sc1/memory.txt
params/rh850f1k/atk2-sc3/device_config.txt
params/rh850f1k/atk2-sc3/memory.txt
Expand All @@ -34,16 +38,16 @@ src/cpu/cpu_dec/op_parse.c
src/cpu/cpu_dec/op_parse.h
src/cpu/cpu_dec/op_parse_private.c
src/cpu/cpu_dec/op_parse_private.h
src/cpu/cpu_exec/op_exec.c
src/cpu/cpu_exec/op_exec.h
src/cpu/cpu_exec/op_exec_arithm.c
src/cpu/cpu_exec/op_exec_arithm_rh850.c
src/cpu/cpu_exec/op_exec_bit.c
src/cpu/cpu_exec/op_exec_branch.c
src/cpu/cpu_exec/op_exec_branch_rh850.c
src/cpu/cpu_exec/op_exec.c
src/cpu/cpu_exec/op_exec_dbg.c
src/cpu/cpu_exec/op_exec_div.c
src/cpu/cpu_exec/op_exec_fpu.c
src/cpu/cpu_exec/op_exec.h
src/cpu/cpu_exec/op_exec_load.c
src/cpu/cpu_exec/op_exec_load_rh850.c
src/cpu/cpu_exec/op_exec_logic.c
Expand Down Expand Up @@ -75,16 +79,14 @@ src/device/intc/intc_user.c
src/device/intc/intc_user.h
src/device/intc/rh850f1k/intc_config.c
src/device/intc/rh850f1k/intc_config.h
src/device/peripheral/rh850f1k/can/can.c
src/device/peripheral/rh850f1k/can/can.h
src/device/peripheral/rh850f1k/can/can_buffer.c
src/device/peripheral/rh850f1k/can/can_buffer.h
src/device/peripheral/rh850f1k/can/canbus/can_bus.h
src/device/peripheral/rh850f1k/can/canbus/can_bus_impl_ros.c
src/device/peripheral/rh850f1k/can/can.c
src/device/peripheral/rh850f1k/can/can_config.h
src/device/peripheral/rh850f1k/can/can_data.h
src/device/peripheral/rh850f1k/can/can_fifo.c
src/device/peripheral/rh850f1k/can/can_fifo.h
src/device/peripheral/rh850f1k/can/can.h
src/device/peripheral/rh850f1k/can/can_interrupt.c
src/device/peripheral/rh850f1k/can/can_interrupt.h
src/device/peripheral/rh850f1k/can/can_mode_channel.c
Expand All @@ -101,13 +103,15 @@ src/device/peripheral/rh850f1k/can/can_tx_history.h
src/device/peripheral/rh850f1k/can/can_tx_queue.c
src/device/peripheral/rh850f1k/can/can_tx_queue.h
src/device/peripheral/rh850f1k/can/can_types.h
src/device/peripheral/rh850f1k/can/canbus/can_bus.h
src/device/peripheral/rh850f1k/can/canbus/can_bus_impl_ros.c
src/device/peripheral/rh850f1k/can/mapping/can_register.h
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping.c
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping.h
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping_io.h
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping_io_channel.c
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping_io_fifo_status.c
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping_io_global.c
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping_io.h
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping_io_rx_buffer.c
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping_io_rx_fifo.c
src/device/peripheral/rh850f1k/can/mapping/can_register_mapping_io_rx_rule.c
Expand Down
2 changes: 1 addition & 1 deletion src/cpu/target_cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* Y: function
* Z: bug fix, small changes
*/
#define ATHRILL_TARGET_VERSION "0.A.1"
#define ATHRILL_TARGET_VERSION "0.A.2"

#define CPU_GREG_NUM (32U)

Expand Down

0 comments on commit 97c03d1

Please sign in to comment.