We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 918ccf1 + 3fef245 commit 35c6867Copy full SHA for 35c6867
content/courses/Ada_For_The_Embedded_C_Developer/chapters/04_Embedded.rst
@@ -180,8 +180,8 @@ assembler as well as source-level variables to be used for input and output:
180
begin
181
Asm ("rdtsc",
182
Outputs =>
183
- (Unsigned_32'Asm_Output ("=a", High),
184
- Unsigned_32'Asm_Output ("=d", Low)),
+ (Unsigned_32'Asm_Output ("=a", Low),
+ Unsigned_32'Asm_Output ("=d", High)),
185
Volatile => True);
186
187
Counter :=
0 commit comments