@@ -141,7 +141,7 @@ BEGIN
(*EmitLn('MULS (SP)+,D0');*)
Strings.Concat(TAB,"pop rbx", chaine);
EmitLn(chaine);
- Strings.Concat(TAB,"mul rax, rbx", chaine);
+ Strings.Concat(TAB,"imul rax, rbx", chaine);
END Multiply;
@@ -155,7 +155,7 @@ BEGIN
@@ -25,7 +25,7 @@ _start:
push rax
mov rax,8
pop rbx
- mul rax, rbx
+ imul rax, rbx
; end of program
mov rdi,0
mov rax,SYS_EXIT
@@ -0,0 +1,16 @@
+
+Créer un nouveau dépôt en ligne de commande
+touch README.md
+git init
+git add README.md
+git commit -m "first commit"
+git remote add origin http://git.yojik.eu/eric/Lets_build_a_compiler.git
+git push -u origin master
+Soumettre un dépôt existant par ligne de commande