Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RGBDS to 0.9.0 #61

Merged
merged 4 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<ul>
<li id="infomenu">Info...</li>
<li>
<a href="https://rgbds.gbdev.io/docs/v0.8.0" target="_blank">rgbds manual</a>
<a href="https://rgbds.gbdev.io/docs/v0.9.0" target="_blank">rgbds manual</a>
</li>
<li>
<a href="https://github.com/gbdev/rgbds-live/issues" target="_blank">Report a problem</a>
Expand Down
16 changes: 8 additions & 8 deletions patches/rgbds.patch
SelvinPL marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
diff --git a/include/asm/symbol.hpp b/include/asm/symbol.hpp
index 409e2ba5..58b78ba0 100644
index 9aec7195..4b6f6388 100644
--- a/include/asm/symbol.hpp
+++ b/include/asm/symbol.hpp
@@ -100,4 +100,6 @@ void sym_Init(time_t now);
std::optional<std::string> const &sym_GetCurrentSymbolScope();
void sym_SetCurrentSymbolScope(std::optional<std::string> const &newScope);
@@ -104,4 +104,6 @@ std::pair<Symbol const *, Symbol const *> sym_GetCurrentLabelScopes();
void sym_SetCurrentLabelScopes(std::pair<Symbol const *, Symbol const *> newScopes);
void sym_ResetCurrentLabelScopes();

+Symbol *sym_AddSecret();
Rangi42 marked this conversation as resolved.
Show resolved Hide resolved
+
#endif // RGBDS_ASM_SYMBOL_HPP
diff --git a/src/asm/parser.y b/src/asm/parser.y
index 55044bfc..94ec183d 100644
index 437c6afa..19307c5c 100644
--- a/src/asm/parser.y
+++ b/src/asm/parser.y
@@ -429,7 +429,9 @@ else:
@@ -503,7 +503,9 @@ else:

plain_directive:
label
Expand All @@ -25,10 +25,10 @@ index 55044bfc..94ec183d 100644
| label directive
;
diff --git a/src/asm/symbol.cpp b/src/asm/symbol.cpp
index 8d803a39..be108ae8 100644
index 1ae86aba..a68e5472 100644
--- a/src/asm/symbol.cpp
+++ b/src/asm/symbol.cpp
@@ -597,3 +597,24 @@ void sym_Init(time_t now) {
@@ -669,3 +669,24 @@ void sym_Init(time_t now) {
sym_AddEqu("__UTC_MINUTE__"s, time_utc->tm_min)->isBuiltin = true;
sym_AddEqu("__UTC_SECOND__"s, time_utc->tm_sec)->isBuiltin = true;
}
Expand Down
2 changes: 1 addition & 1 deletion rgbds
Submodule rgbds updated 514 files
Loading