Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
libseven: fix input data alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarLambda committed Dec 22, 2022
1 parent 2036843 commit 59a26d4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ make_dist() {

[ ! -d "$DIST" ] && mkdir "$DIST" || rm "$DIST"/*

(PROJECT=libseven VERSION=0.12.1 make_dist)
(PROJECT=minrt VERSION=0.2.1 make_dist)
(PROJECT=libseven VERSION=0.12.2 make_dist)
(PROJECT=minrt VERSION=0.2.2 make_dist)
2 changes: 1 addition & 1 deletion libseven/include/seven/base/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#define LIBSEVEN_VERSION_MAJOR 0
#define LIBSEVEN_VERSION_MINOR 12
#define LIBSEVEN_VERSION_PATCH 1
#define LIBSEVEN_VERSION_PATCH 2

#define LIBSEVEN_VERSION \
_LIBSEVEN_STR2(LIBSEVEN_VERSION_MAJOR) "." \
Expand Down
2 changes: 1 addition & 1 deletion libseven/meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = '0.12.0'
version = '0.12.2'

sources = [
'src/hw/bios.s',
Expand Down
2 changes: 1 addition & 1 deletion libseven/src/hw/input.s
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
.include "constants.s"
.include "macros.s"

bss KEYINPUT
bss KEYINPUT .align=2
.word 0
endb

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('sdk-seven', 'c',
version: '0.8.4',
version: '0.8.5',
license: 'Zlib',
meson_version: '>=0.60.0',
default_options: ['warning_level=2', 'c_std=c99'])
Expand Down
2 changes: 1 addition & 1 deletion minrt/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/build/
/lib/
*.a
4 changes: 2 additions & 2 deletions minrt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ builddirs:
@mkdir -p $(OBJDIRS) $(LIB)

clean:
@echo "clean: $(BUILD) $(LIB)"
@rm -rf $(BUILD) $(LIB)
@echo "clean: $(BUILD) $(TARGET)"
@rm -rf $(BUILD) $(TARGET)

install: $(TARGET)
@echo "install: $(DESTDIR)$(DEVKITPRO)"
Expand Down

0 comments on commit 59a26d4

Please sign in to comment.