Skip to main content

Questions tagged [assembly]

A low-level programming language providing symbolic representation of machine code.

-3 votes
1 answer
69 views

I am learning ARM assembly, and my final project is to create an OS fully in ASM and C. So, can I run this future OS on latest RPIs that are arm64 ? Even if the answer is probably no.
user avatar
2 votes
1 answer
603 views

I'm taking an assembly code class in college, and we're going to study ARM assembly. However, we'll only cover 32bit ARMv7 assembly code. The class uses some weird ARM emulator, but I would much ...
Peter Petigru's user avatar
3 votes
1 answer
521 views

According to Wikipedia, every Armv8 processor should support sha256 hashing instructions however /proc/cpuinfo doesn't list it. Could there be a failure to identify the feature by the kernel? ...
erolll's user avatar
  • 39
5 votes
1 answer
3k views

In armv7 / 32bit mode I can read the cpuid using uint32_t arm_cpuid; __asm__("mrc p15, 0, %0, c0, c0, 0" : "=r"(arm_cpuid)); This gives 0x410FD034 for RPi3 and 0x410FD083 ...
Goswin von Brederlow's user avatar
2 votes
1 answer
136 views

I've been interested in writing a kernel for my old Raspberry Pi for quite a while, and managed to make work some ARM assembly code I found on the famous "Baking Pi" course by the University ...
mell_o_tron's user avatar
2 votes
0 answers
639 views

I have been struggling to light an LED using my raspberry pi 4 model b but have not been able to find a solution. My assembly code : .section .init .globl _start _start: mov r0, #0xF0000000 orr r0, ...
Rahul Wadhwani's user avatar
1 vote
1 answer
182 views

Yes, I pretty much a noob, but I was wondering if there is a way to program the Raspberry Pi in Assembly Code to transmit data via radio frequencies (like remote control) between itself and another ...
Aries Racuvo's user avatar
2 votes
1 answer
1k views

I've been reading this document: https://www.raspberrypi.org/documentation/hardware/raspberrypi/bootmodes/bootflow.md About the boot process of the Raspberry Pi. I want to make a simple "Hello, ...
Cromulent's user avatar
  • 123

15 30 50 per page