1
1
mirror of https://github.com/foxsen/archbase.git synced 2026-04-27 03:50:35 +08:00

initial import to public repository

This commit is contained in:
Zhang Fuxin
2021-10-27 19:14:51 +08:00
commit c632bed67e
362 changed files with 53748 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
堆栈型,累加器型,寄存器-存储器型,寄存器-寄存器型
PUSH A,LOAD A,"LOAD R1,A","LOAD R1,A"
PUSH B,ADD B,"ADD R1,B","LOAD R2,B"
ADD,STORE C,"STORE C,R1","ADD R3,R1,R2"
POP C,,,"STORE C,R3"
1 堆栈型 累加器型 寄存器-存储器型 寄存器-寄存器型
2 PUSH A LOAD A LOAD R1,A LOAD R1,A
3 PUSH B ADD B ADD R1,B LOAD R2,B
4 ADD STORE C STORE C,R1 ADD R3,R1,R2
5 POP C STORE C,R3