Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
31 |
Tags
- vectorfields
- electromagnetism
- opencv
- gaussiansplatting
- roslaunch
- 3dmapping
- adaptivedensitycontrol
- Ros
- imageprocessing
- usbcamera
- LIDAR
- ComputerVision
- turtlebot
- pointcloud
- covariancematrix
- alphablending
- vectorcalculus
- NERF
- sensorfusion
- Slam
- differentiablerendering
- turtlebot3
- rostopics
- tilebasedrasterizer
- 3dgaussiansplatting
- catkinworkspace
- rospackages
- realtimerendering
- raspberrypi
- rosnoetic
Archives
- Today
- Total
목록Computer Science/Basic (2)
Wiredwisdom

section .data msg db 'Hello, World!', 0Ah ; 출력할 메시지와 줄바꿈(0Ah) len equ $ - msg ; 메시지 길이 계산section .text global _start ; 프로그램 시작점 선언_start: ; write 시스템 콜 사용 mov eax, 4 ; 시스템 콜 번호 (sys_write) mov ebx, 1 ; 파일 디스크립터 (stdout) mov ecx, msg ; 메시지 주소 mov edx, len ; 메시지 길이..
Computer Science/Basic
2024. 11. 29. 21:22