Guest User

Untitled

a guest
Apr 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. .CODE
  2. PUSH heap_init
  3. CALL
  4. .CODE
  5. PUSH Metodo_@preconstructorEstaticoBase
  6. CALL
  7. .CODE
  8. PUSH Metodo_@main
  9. CALL
  10. HALT
  11. heap_init: RET 0
  12. malloc: LOADFP
  13. LOADSP
  14. STOREFP
  15. LOADHL
  16. DUP
  17. PUSH 1
  18. ADD
  19. STORE 4
  20. LOAD 3
  21. ADD
  22. STOREHL
  23. STOREFP
  24. RET 1
  25. .DATA
  26. VT_Base: NOP
  27. .CODE
  28. Metodo_@main: LOADFP
  29. LOADSP
  30. STOREFP
  31. RMEM 1
  32. PUSH 2
  33. DUP
  34. STORE 0
  35. POP
  36. FMEM 1
  37. STOREFP
  38. RET 0
  39. .CODE
  40. Metodo_@constructorBase18: LOADFP
  41. LOADSP
  42. STOREFP
  43. FMEM 0
  44. STOREFP
  45. RET 1
  46. .CODE
  47. Metodo_@preconstructorInstanciaBase: LOADFP
  48. LOADSP
  49. STOREFP
  50. FMEM 0
  51. STOREFP
  52. RET 1
  53. .CODE
  54. Metodo_@preconstructorEstaticoBase: LOADFP
  55. LOADSP
  56. STOREFP
  57. FMEM 0
  58. STOREFP
  59. RET 0
Add Comment
Please, Sign In to add comment