Practice Makes Perfect

inline assembly 본문

Software/[C 언어]

inline assembly

tony99 2022. 3. 17. 15:57

__asm__ __volatile__ (asms : output : input : clobber);

 

__asm__ __volatile__ (asms : output : input); // clobber 없을 때

__asm__ __volatile__ (asms : : input) // output, clobber 없을 때

'Software > [C 언어]' 카테고리의 다른 글

escape 문자  (0) 2022.03.18
static 키워드  (0) 2021.07.05
inline 함수  (0) 2020.01.01
Comments