[IAR Embedded Workbench IDE] 디버거를 이용한 어셈블리 분석

이채윤·2022년 5월 16일
0

임베디드

목록 보기
34/70
post-thumbnail
#include<stdio.h>


int main() {

  int a = 2;

  int b = 4;

  a = xfunc(a, b);

  b = yfunc(a, b);
  
  printf("%d, %d", a, b);

  

  return 0;

}

int xfunc(int a, int b) {

  return a*b;

}

int yfunc(int a, int b) {

  return xfunc(a, b);

} 
  • 위와 같이 코드를 작성하여 디버그를 진행해보았습니다.
    <참고 단축키>
    - Download & Debug -> ctrl + D
    - Stop Debugging -> ctrl + shift + D




[참고자료]
https://jwprogramming.tistory.com/101

0개의 댓글