-
Notifications
You must be signed in to change notification settings - Fork 101
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
Merge 3D maze game #354
Open
programmerjake
wants to merge
16
commits into
antonblanchard:master
Choose a base branch
from
programmerjake:merge-3d-game
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Merge 3D maze game #354
programmerjake
wants to merge
16
commits into
antonblanchard:master
from
programmerjake:merge-3d-game
Conversation
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
Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
An extra uart is added at 0xc0008000 attached to valentyusb, using the OrangeCrab's onboard USB port. This has a liteuart interface, an identifier bit is added to syscon. Generated from branch hw_cdc_eptri of https://github.com/litex-hub/valentyusb The generate script is based on valentyusb/sim/generate_verilog.py UARTUSB: usbserial@8000 { device_type = "serial"; compatible = "litex,liteuart"; reg = <0x8000 0x100>; interrupts = <0x15 0x1>; }; (requires extra kernel patches for early console at present v5.16) Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
usb_hello is a copy of hello_world but uses both consoles Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
That makes it easier to override a non-litedram build for testing RAM_INIT_FILE, eg make microwatt.dfu LITEDRAM_GHDL_ARG=-gUSE_LITEDRAM=false RAM_INIT_FILE=usb_hello/usb_hello.hex Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
I added a simple 3D maze game that is a pretty impressive demo of what Microwatt can do. It's based on antonblanchard#347 Signed-off-by: Jacob Lifshay <programmerjake@gmail.com>
programmerjake
force-pushed
the
merge-3d-game
branch
from
March 4, 2022 11:52
ec83153
to
73835ce
Compare
GHDL synthesis is complaining that inverse_table is never stored to. Change it to a constant. Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
Use unsigned() to make it clear what we are doing. Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
GHDL synthesis is flagging a warning about this. Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
xics: Fix warning when comparing two std_ulogic_vectors
fpu: Make inverse_table a constant
Remove unused sequential signal from Fetch1ToIcacheType
log2ceil() returns the number of bits required to store a value, so we need to pass in memory_size-1, not memory_size. Every other user of log2ceil() gets this right. Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
wishbone_bram_wrapper ram_addr_bits is 1 bit off
This allows us to boot from flash for example. Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
…ddress Allow ALT_RESET_ADDRESS to be overridden
Merged in latest changes from master (thanks, Tobias Platen!) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I added a simple 3D maze game that is a pretty impressive demo of what Microwatt can do.
It's based on #347
cc @mkj
Screenshot of it running on an OrangeCrab: