일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Numpy
- ipad
- GT-S80
- RNN
- Python
- imread
- keras
- Splunk
- mean
- 삼성소프트웨어멤버십
- SciPy
- pandas
- E-P1
- pycharm
- LSTM
- Series
- SPL
- synology
- index
- 알고리즘
- dataframe
- install
- GitHub
- pip
- javascript
- Lotto
- mariadb
- Button
- DFS
- CNN
Archives
- Today
- Total
잠토의 잠망경
x86에서 int 0x2가 실행되는 경우 본문
int 0x2 이것의 의미는 무엇인가?
int 가 되었을 때의 cpu 동작 모션은 다음과 같은 순서로 진행이된다.
우선 (1) int 0x2가 발생되면 (2)cpu는 idtr이 가리키는 주소를 참조하고
(3) idt의 0x2번째 entry를 참조한다.
그런 다음 idt가 가리키는 인터럽트 핸들러 루틴을 실행한다.
핸들러의 주 내용
push gs
push fs
push es
push ds
pushad
pushfd
....
등이다.
Comments