본문 바로가기

전체 글

특별한 용도의 ARM register (Special Purpose Register) 아래 글에서 ARM register 중 특별한 용도로 사용되는 register가 있다고 소개했다. 2021.05.05 - [Embedded SW] - ARM7 레지스터와 모드(ARM7 register and mode) ARM7 레지스터와 모드(ARM7 register and mode) [ARM7 Mode] ARM7 Core 에는 아래와 같이 7가지 mode가 존재한다. num mode abbreviations description 1 User USR Usual ARM program execution state, and is used for executing most application programs 2 S.. computersource.tistory.com ARM register 중 특별한 용도로 사.. 더보기
ARM7 레지스터와 모드(ARM7 register and mode) [ARM7 Mode] ARM7 Core 에는 아래와 같이 7가지 mode가 존재한다. num mode abbreviations description 1 User USR Usual ARM program execution state, and is used for executing most application programs 2 System SYS Privileged user mode for the operating system (Run privileged operating system tasks) 3 FIQ FIQ When fast interrupt is raised 4 IRQ IRQ When normal interrupt is raised 5 Supervisor SVC A protected mode fo.. 더보기
git 명령어 계속 update 예정 ------------------------------------local git------------------------------------ git repository 만들기 : git init bare git 만들기 : git clone --bare branch 삭제 : git branch -D tag 보기 : git tag tag 만들기 : (*lightweight방식) : git tag (*annotated 방식) : git tag -a -m "" Lightweight: 특정 커밋에 tag Annotated: 만든 사람, 이메일, 날짜, 메시지가 담긴 tag 커밋 생성 tag 삭제 : git tag -D empty commit 만들기 : git commit --allow.. 더보기