Exploring AArch64 assembler
thinkingeek.com
Exploring AArch64 assembler
1–10 of 14 posts
Re: Exploring AArch64 assembler
#2Re: Exploring AArch64 assembler
#3Re: Exploring AArch64 assembler
#4[1] https://www.pine64.org/ (I'm not related to Pine, just a satisfied user)
Re: Exploring AArch64 assembler
#5For those who are interested in running your software on AArch64 hardware directly, without any additional firmware or operating system in between, I've developed a boot loader and tool chain to test and execute unikernels on a Pine64: https://github.com/Lichtso/UnikernelExperiments
Re: Exploring AArch64 assembler
#6I recommend the Pine 64 board. I bought one (2GB RAM, gigabit ethernet model, for 29$ [1]), and despite running its 4 cores at just 1.2GHz, it is quite speedy, and rock solid running Debian 24/7 as ARM64 build server. [1] https://www.pine64.org/ (I'm not related to Pine, just a satisfied user)
Re: Exploring AArch64 assembler
#7I recommend the Pine 64 board. I bought one (2GB RAM, gigabit ethernet model, for 29$ [1]), and despite running its 4 cores at just 1.2GHz, it is quite speedy, and rock solid running Debian 24/7 as ARM64 build server. [1] https://www.pine64.org/ (I'm not related to Pine, just a satisfied user)
Re: Exploring AArch64 assembler
#8I recommend the Pine 64 board. I bought one (2GB RAM, gigabit ethernet model, for 29$ [1]), and despite running its 4 cores at just 1.2GHz, it is quite speedy, and rock solid running Debian 24/7 as ARM64 build server. [1] https://www.pine64.org/ (I'm not related to Pine, just a satisfied user)
I wish I had know about the Pine 64! I ended up buying an ODROID-C2 ( http://www.hardkernel.com/main/products/prdt_info.php ) when looking for an AArch64 board, which is pretty similar.
Re: Exploring AArch64 assembler
#9hey, you can use Nexus 5x, 6p or Pixel phones! I've been meaning to write a blog post about this.
Re: Exploring AArch64 assembler
#10Qemu usermode emulation is nice, but the full-hardware emulation is way more interesting. Eg. in https://github.com/dpc/titanos - toy kernel for Aarch64 written in our lord-and-saviour programming language: Rust, I use Qemu to run kernel and unittests for that kernel. With Qemu gdb stubs it's like having a software-defined hardware platform with a JTAG debugger attached. `make run` and it runs - no need to plug cables and press reset buttons.