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 gba requirement from 0.13 to 0.14 in /tests/gba in the cargo group across 1 directory #202

Merged
merged 1 commit into from
Jan 13, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 13, 2025

Updates the requirements on gba to permit the latest version.
Updates gba to 0.14.1

Changelog

Sourced from gba's changelog.

0.14.1

  • Fixed the #[naked] functions to use naked_asm! instead of asm!, which means that they now work on newer Nightly compilers but not older Nightly compilers.

0.14.0

  • Break: copy_u32x8_unchecked is an extern "C" fn now.
  • new cargo feature aeabi_mem_fns causes the appropriate functions to be generated. They're still written as #[naked] functions, so they require nightly. It turns out that rust has so many implicit memcpy calls that it did make a performance difference.

0.13.3

  • Added TextEntry::to_u16

0.13.2

  • Fix type alias typo in the gba::fixed module when using the fixed feature.

0.13.1

  • Adjusted the assembly runtime code to resolve a bug that occurred on real hardware but not in emulation. The change was to use the System mode stack instead of the IRQ mode stack when calling the user code's assembly handler. Exactly why this previously caused a problem with actual hardware is unknown, but it did, and now we've got a fix.

0.13.0

  • Breaking: Removes all #[naked] functions from the crate (because this is a Nightly feature with no clear timeline to stabilization).
  • The crate's assembly runtime, which is what is used before calling into main, and what handles the interrupt calls from the BIOS, had been replaced with global_asm!.
  • The AEABI memory copy and set functions have been removed. In their place there are functions that are more custom tailored to the three primary actual uses of the memory functions on the GBA: reading/writing SRAM, copying ROM into VRAM, and clearing VRAM.
  • The AEABI division functions have been removed.
  • The compiler-builtins crate still provides the general memory operation and division functions, so those tasks can still be performed when necessary. However, if you're using memory ops or division ops so often that they're a program bottleneck, usually you want to look carefully at your implementation of those functions and try to design them to serve your own common case as best as possible.
  • Safe abstractions have been added on top of the new memory functions so that all the example/ files can do their thing without using any unsafe. This

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Updates the requirements on [gba](https://github.com/rust-console/gba) to permit the latest version.

Updates `gba` to 0.14.1
- [Changelog](https://github.com/rust-console/gba/blob/main/CHANGELOG.md)
- [Commits](rust-console/gba@v0.13.0...v0.14.1)

---
updated-dependencies:
- dependency-name: gba
  dependency-type: direct:production
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@taiki-e taiki-e merged commit 5a9e74b into main Jan 13, 2025
110 checks passed
@taiki-e taiki-e deleted the dependabot/cargo/tests/gba/cargo-f5bcf8c3dd branch January 13, 2025 05:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant