| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
- Visual Studio Code
- buildroot
- avr-gcc
- Linux
- Arduino
- Visual Studio
- 리눅스
- C++
- 라즈베리파이
- vscode
- WPF
- UART
- raspberrypi
- atmel
- GPIO
- AArch64
- esp32
- yocto
- 아두이노
- bare metal
- Raspberry
- nucleo
- 회로
- c#
- Debug
- AVR
- QEMU
- STM32
- 디버깅
- Debugging
- Today
- Total
목록Assembly (3)
임베디드를 좋아하는 조금 특이한 개발자?
- 개발 환경개발 보드 : Raspberrypi 4WSL2 (Ubuntu 22.04 LTS)toolchain : aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 - 예제 코드https://github.com/MainForm/RaspberryPI4_Baremetal_Firmware/tree/578656a4de5b643500b4ac0bdc031c46c0607bd4 GitHub - MainForm/RaspberryPI4_Baremetal_FirmwareContribute to MainForm/RaspberryPI4_Baremetal_Firmware development by creating an account on GitHub.github.com1. ..
- 개발 환경개발 보드 : Raspberrypi 4WSL2 (Ubuntu 22.04 LTS)toolchain : aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0- 참고 자료- 라즈베리파이 보드에 대한 설명 및 부팅 순서에 대한 소개https://www.raspberrypi.com/documentation/computers/raspberry-pi.html- 라즈베리파이4에 사용된 프로세스에 대한 설명https://www.raspberrypi.com/documentation/computers/processors.html#bcm2711- 라즈베리파이을 위한 Linux kernel 빌드 방법 소개https://www.raspberrypi.com/docu..
개발 환경 H/W : raspberryPI 3 B+ OS : raspbian 4.19 https://www.youtube.com/watch?v=FV6P5eRmMh8&list=PLc7W4b0WHTAXkCy3RUAO0Eqx52ALTLUdq&index=3 현재 이 글은 위 영상을 제 나름대로 해석하고 참고하여 작성하였습니다. 더 자세한 정보를 원한다면 위 영상을 보는 것을 추천합니다. 대부분의 언어를 배우게 되면 하나의 관례처럼 Hello world를 출력하는 프로그램을 작성합니다. 처음 어셈블리를 배우는 사람으로서 이번에 어셈블리 언어로 HelloWorld를 출력하고 기본적인 어셈블리의 실행과정을 살펴보겠습니다. .global _start .section .text _start: mov r7, #1 mov ..