Files
water111 27f0a7ca44 [Decompiler] Begin expression conversion, rearrange tests (#209)
* refactor tests and analysis passes

* identity test working

* combine test categories with only a few cases

* more fixes
2021-01-23 16:32:56 -05:00

9 lines
228 B
Common Lisp

(let* ((base-addr #x6000000)
(ptr-int32 (the (pointer int32) base-addr))
(ptr-int16 (the (pointer int16) base-addr))
)
(set! (-> ptr-int32 1) #x00070006)
(+ (-> ptr-int16 2)
(-> ptr-int16 3)
)
)