Mercurial > vba-clojure
view clojure/com/aurellem/gb/rlm_assembly.clj @ 398:0591dcddf831
fixed bug where variables would be overwritten.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Fri, 13 Apr 2012 05:28:17 -0500 |
parents | 9b0d79cad624 |
children | ddb3c6299619 |
line wrap: on
line source
1 (ns com.aurellem.gb.rlm-assembly2 "Version of main bootstrap program that is valid output for the3 item-writer program."4 (:use (com.aurellem.gb gb-driver assembly util vbm constants))5 (:use (com.aurellem.run bootstrap-1))6 (:import [com.aurellem.gb.gb_driver SaveState]))9 ;; MODE-SELECT10 ;; SET-LENGTH11 ;; SET-TARGET12 ;; WRITE13 ;; JUMP15 ;; Specs for Main Bootstrap Program17 ;; Number-Input18 ;; Number input works using all eight buttons to19 ;; spell out an 8 bit number. The order of buttons is20 ;; [:d :u :l :r :start :select :b :a] --> 1111111121 ;; [ :l :start :a] --> 0010100123 ;;; MODE-SELECT24 ;; The bootstrap program starts in MODE-SELECT mode.25 ;; MODE-SELECT transitions to one of three modes depending26 ;; on which buttons are pressed:27 ;; 0 (no-buttons) : MODE-SELECT28 ;; 8 [:start] : WRITE-BYTES29 ;; 0xFF (all-buttons) : JUMP31 ;;; WRITE-BYTES33 ;; WRITE-BYTES mode writes sequences of arbitray values to34 ;; arbitray memory locations. It expects you to enter a35 ;; header of three bytes describing what to write:37 ;; Byte 0 : Number of Bytes to Write38 ;; Byte 1 : Start Address High Byte39 ;; Byte 1 : Start Address Low Byte41 ;; Then, you enter the number of bytes specified in Byte 042 ;; they are written to the start address in43 ;; sequence. After the last byte is written control44 ;; returns to MODE-SELECT mode.46 ;; Example: to write the sequence [1 2 3 4] starting at47 ;; address 0xC01F enter48 ;; Byte 0 : 4 (will write four bytes)49 ;; Byte 1 : 0xC0 (high byte of 0xC01F)50 ;; Byte 2 : 0x1F (low byte of 0xC01F)51 ;; Byte 3 : 1 (write 1 to 0xC01F)52 ;; Byte 4 : 2 (write 2 to 0xC020)53 ;; Byte 5 : 3 (write 3 to 0xC021)54 ;; Byte 6 : 4 (write 4 to 0xC022)56 ;;; JUMP57 ;; JUMP mode jumps program control to any arbitray58 ;; location. It expects you to enter two bytes which59 ;; correspond to the high and low bytes of the memory60 ;; address to which you want to jump.61 ;; Byte 0 : Jump Address High Byte62 ;; Byte 1 : Jump Address Low Byte64 ;; Example: to jump to address 0x1234 enter65 ;; Byte 0 : 0x12 (high byte of 0x1234)66 ;; Byte 1 : 0x34 (low byte of 0x1234)69 (defn ->signed-8-bit [n]70 (if (< n 0)71 (+ 256 n) n))73 (defn frame-metronome []74 (let [init [0xC5] ;; save value of BC75 timing-loop76 [0x01 ; \77 0x43 ; |78 0xFE ; | load 0xFF44 into BC without repeats79 0x0C ; |80 0x04 ; /81 0x0A] ;; (BC) -> A, now A = LY (vertical line coord)82 continue-if-14483 [0xFE84 144 ;; compare LY (in A) with 14485 0x20 ;; jump back to beginning if LY != 144 (not-v-blank)86 (->signed-8-bit87 (+ -4 (- (count timing-loop))))]88 spin-loop89 [0x05 ;; dec B, which is 0xFF90 0x20 ;; spin until B==091 0xFD]]92 (concat init timing-loop continue-if-144 spin-loop)))94 (defn test-frame-metronome95 "Ensure that frame-metronome ticks exactly once every frame."96 ([] (test-frame-metronome 151))97 ([steps]98 (let [inc-E [0x1C 0x1899 (->signed-8-bit100 (+ -3 (- (count (frame-metronome)))))]101 program (concat (frame-metronome) inc-E)102 count-frames103 (-> (tick (mid-game))104 (IE! 0)105 (DE! 0)106 (set-memory-range pokemon-list-start program)107 (PC! pokemon-list-start))108 E-after-moves109 (E (run-moves count-frames (repeat steps [])))]110 (println "E:" E-after-moves)111 (assert (= steps E-after-moves))113 (println "E =" E-after-moves "after" steps "steps")114 count-frames)))116 (defn read-user-input []117 [0x3E118 0x20 ; prepare to measure d-pad120 0x01 ;\121 0x01 ; |122 0xFE ; | load 0xFF00 into BC without repeats123 0x04 ; |124 0x0D ;/126 0x02127 0x0A ;; get D-pad info129 0xF5 ;; push AF131 0x3E132 0x10 ; prepare to measure buttons134 0x3F ;; clear carry flag no-op to prevent repeated nybbbles136 0x02137 0x0A ;; get button info139 0xE6 ;; select bottom bits of A140 0x0F142 0x47 ;; A->B144 0xF1 ;; pop AF146 0xE6147 0x0F ;; select bottom bits of A149 0xCB150 0x37 ;; swap A nybbles152 0xB0 ;; (or A B) -> A154 0x2F ;; (NOT A) -> A156 ])158 (defn test-read-user-input []159 (let [program160 (concat161 (frame-metronome) (read-user-input)162 [0x5F ;; A-> E163 0x18164 (->signed-8-bit165 (+ (- (count (frame-metronome)))166 (- (count (read-user-input)))167 (- 3)))])168 read-input169 (-> (tick (mid-game))170 (IE! 0)171 (set-memory-range pokemon-list-start program)172 (PC! pokemon-list-start))]173 (dorun174 (for [i (range 0x100)]175 (assert (= (E (step read-input (buttons i))) i))))176 (println "Tested all inputs.")177 read-input))179 (def symbol-index180 (fn [symbol sequence]181 (count (take-while182 (partial not= symbol)183 sequence))))186 (defn main-bootstrap-program [start-address]187 ;; Register Use:189 ;; ED non-volitale scratch191 ;; A user-input192 ;; HL target-address193 ;; B bytes-to-write194 ;; C non-volatile scratch196 ;; Modes (with codes) are:198 ;; single-action-modes:199 ;; SET-TARGET-HIGH 0x67 ;; A->H200 ;; SET-TARGET-LOW 0x6F ;; A->L201 ;; JUMP 0xE9 ;; jump to (HL)203 ;; multi-action-modes204 ;; WRITE 0x47 ;; A->B206 (let [[start-high start-low] (disect-bytes-2 start-address)207 jump-distance (+ (count (frame-metronome))208 (count (read-user-input)))210 init211 [0xAF 0x4F 0x57 0x47] ;; 0->A; 0->C; 0->D; 0->B213 input214 [0xC1 ;; pop BC so it's not volatile216 0x5F ;; A->E217 0xAF ;; test for output-mode (bytes-to-write > 0)218 0x00 ;; (cp A B)219 0x7B ;; E->A220 0x20 ;; skip input section if221 :to-output ;; we're not in input mode223 :to-be-executed225 ;; write mode to instruction-to-be-executed (pun)226 0xEA227 :to-be-executed-address229 0x0C ;; inc C230 0xCB231 0x41 ;; test bit 0 of C232 0x20 ;; if (0 == (C % 2))233 0x04234 0xAF ;; put a no op (0x00) in to-be-executed235 0xEA236 :to-be-executed-address238 0x18 ;; return239 :to-beginning-1]241 ;; output242 ;; [:output-start ;; just a label243 ;; 0x54 ;;244 ;; 0x5D ;; HL->DE \245 ;; ;; |246 ;; 0x79 ;; C->A | this mess is all to do247 ;; 0x12 ;; A->(DE) | 0x22 (LDI (HL), A) without248 ;; ;; | any repeating nybbles249 ;; 0x23 ;; inc HL /252 ;; 0x05 ;; DEC bytes-to-write (B)253 ;; 0x20 ;; if there are no more bytes to write,254 ;; 0x04255 ;;257 ;; 0x18258 ;; :to-beginning-2]260 output261 [:output-start ;; just a label262 0x00 ;;263 0x00 ;; HL->DE \264 ;; |265 0x00 ;; C->A | this mess is all to do266 0x00 ;; A->(DE) | 0x22 (LDI (HL), A) without267 ;; | any repeating nybbles268 0x00 ;; inc HL /271 0x00 ;; DEC bytes-to-write (B)272 0x00 ;; if there are no more bytes to write,273 0x00274 0x00 ;; put a no op (0x00) in to-be-executed275 0x00276 0x00277 0x00279 0x00280 0x00]284 symbols285 {:to-be-executed-address286 (reverse287 (disect-bytes-2288 (+ start-address jump-distance289 (count init)290 (symbol-index :to-be-executed input))))291 :to-be-executed 0x00} ;; clear carry flag no-op293 program** (flatten294 (replace295 symbols296 (concat init (frame-metronome)297 (read-user-input)298 input output)))299 resolve-internal-jumps300 {:output-start []301 :to-output302 (->signed-8-bit303 (- (symbol-index :output-start program**)304 (symbol-index :to-output program**)))}306 program*307 (flatten (replace resolve-internal-jumps program**))309 resolve-external-jumps310 {:to-beginning-1311 (->signed-8-bit312 (+ (count init)313 -2 (- (dec (symbol-index :to-beginning-1 program*)))))314 :to-beginning-2315 (->signed-8-bit316 (+ (count init)317 -2 (- (dec (symbol-index :to-beginning-2 program*)))))}319 program320 (replace resolve-external-jumps program*)]321 program))324 ;;;;;; TESTS ;;;;;;326 (defn bootstrap-base []327 (let [program (main-bootstrap-program pokemon-list-start)]328 ;; make sure program is valid output for item-writer329 ;;(bootstrap-pattern program)330 (-> (tick (mid-game))331 (set-memory-range pokemon-list-start program)332 (PC! pokemon-list-start))))334 (defn test-set-H [n]335 (let [after336 (-> (bootstrap-base)337 (step [])338 (step [])339 (step (buttons 0x67))340 (step (buttons n))341 )]342 (hex (H after))))344 (defn test-write-bytes-mode []345 (let [target-address 0xC00F346 [target-high target-low] (disect-bytes-2 target-address)347 assembly [0xF3 0x18 0xFE 0x12]348 get-mem-region #(subvec (vec (memory %))349 target-address (+ target-address 20))350 before (bootstrap-base)351 after352 (-> before353 (step []) ; make sure it can handle blanks354 (step []) ; at the beginning.355 (step [])356 (step [:start]) ; select WRITE-BYTES mode357 (step (buttons 4)) ; write 4 bytes358 (step (buttons target-high))359 (step (buttons target-low))360 (step (buttons (nth assembly 0)))361 (step (buttons (nth assembly 1)))362 (step (buttons (nth assembly 2)))363 (step (buttons (nth assembly 3)))364 (step [])365 (step [])366 (step []))]367 (println "before :" (get-mem-region before))368 (println "after :" (get-mem-region after))369 (assert (= assembly (take 4 (get-mem-region after))))370 after))372 (defn test-jump-mode []373 (let [target-address 0xC00F374 [target-high target-low] (disect-bytes-2 target-address)375 post-jump376 (-> (test-write-bytes-mode)377 (step [])378 (step [])379 (step [])380 (step (buttons 0xFF)) ; Select JUMP mode.381 (step (buttons target-high))382 (step (buttons target-low)))383 program-counters384 (capture-program-counter385 post-jump386 10000)]387 (println program-counters)388 (assert (contains? (set program-counters) target-address))389 post-jump))