You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
401 B

/**
* @file align_asm_colon.h
*
* @author Guy Maurel
* split from align.cpp
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef ALIGN_ASM_COLON_H_INCLUDED
#define ALIGN_ASM_COLON_H_INCLUDED
/**
* Aligns asm declarations on the colon
* asm volatile (
* "xxx"
* : "x"(h),
* "y"(l),
* : "z"(h)
* );
*/
void align_asm_colon();
#endif /* ALIGN_ASM_COLON_H_INCLUDED */