We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c669e2 commit cf23082Copy full SHA for cf23082
src/asm.md
@@ -1,5 +1,11 @@
1
# Assembly on stable
2
3
+> Note: Since Rust 1.59, both *inline* assembly (`asm!`) and *free form* assembly
4
+> (`global_asm!`) become stable. But since it will take some time for the
5
+> existing crates to catchup the change, and since it's good for us to know the
6
+> other ways in history we used to deal with assembly, we will keep this chapter
7
+> here.
8
+
9
So far we have managed to boot the device and handle interrupts without a single
10
line of assembly. That's quite a feat! But depending on the architecture you are
11
targeting you may need some assembly to get to this point. There are also some
0 commit comments