This file contains hidden or 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
| from typing import Callable, Optional, Tuple | |
| import numpy as np | |
| from nptyping import Array | |
| def rkn45(t0: float, | |
| tf:float, | |
| h0: float, |
This file contains hidden or 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
| library IEEE; | |
| use IEEE.STD_LOGIC_1164.ALL; | |
| use IEEE.STD_LOGIC_UNSIGNED.ALL; | |
| entity axi_led_ctrl is | |
| port ( | |
| -- General | |
| M_AXI_ACLK : in std_logic; | |
| M_AXI_ARESETN : in std_logic; |
This file contains hidden or 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
| ---------------------------------------------------------------------------------- | |
| -- Company: | |
| -- Engineer: | |
| -- | |
| -- Create Date: 03.10.2021 19:41:50 | |
| -- Design Name: | |
| -- Module Name: axi_led_ctrl - Behavioral | |
| -- Project Name: | |
| -- Target Devices: | |
| -- Tool Versions: |
This file contains hidden or 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
| all: flash.img | |
| hello.o: hello.s | |
| arm-none-eabi-as -g -o hello.o hello.s | |
| hello.elf: hello.o | |
| arm-none-eabi-ld -Ttext=0x0 -o hello.elf hello.o | |
| hello.bin: hello.elf | |
| arm-none-eabi-objcopy -O binary hello.elf hello.bin |