jaryoung

Results 2 issues of jaryoung

章节:macOS上的汇编入门(九)——跳转与函数 环境:Mac OS 12.1 ``` # Fibonacci.s .text .globl _main _main: movq $13, %rdi callq _Fibonacci retq _Fibonacci: movq $1, %rax movq $1, %rbx compare: cmp $2, %rdi jg loop_continue...

```java /** * Returns a slice of this buffer's sub-region. Modifying the content of * the returned buffer or this buffer affects each other's content while * they maintain separate...