| 1 | #include "stubs_asm.h" |
|---|
| 2 | |
|---|
| 3 | DEF(physw_run, 0x1FAC) // ok |
|---|
| 4 | DEF(physw_status, 0xE5F8) // 0xFF826ADC, in sub_FF826AA0 |
|---|
| 5 | |
|---|
| 6 | // The names below could be found automanically |
|---|
| 7 | // by looking up the strings with the same names as these variables |
|---|
| 8 | // and function 'ShowPhySwStatus' which is also symbolic |
|---|
| 9 | DEF(NotifyMask, 0x0000E5C8) // also in above sub |
|---|
| 10 | DEF(SwitchMask, 0x0000E5D8) |
|---|
| 11 | DEF(InvertData, 0x0000E5E8) |
|---|
| 12 | DEF(GpioStatus, 0x0000E5F8) // This is the real name for 'physw_status' |
|---|
| 13 | DEF(SwitchStatus, 0x0000E608) |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | // Key values for 'Feather' on joystic |
|---|
| 17 | // Could be retrieved from 'PhySW' Task function |
|---|
| 18 | // DEF(touch_keys_angle, 0x0000E8C8) // no idea?? |
|---|
| 19 | |
|---|
| 20 | DEF(zoom_busy, 0x79C18) // ZoomLens, 0xFFAA591C |
|---|
| 21 | DEF(focus_busy, 0x79F34) // FocusLensController, 0xFFAB58C8 |
|---|
| 22 | DEF(movie_compression, 0x6140) // 0xFF956614 |
|---|
| 23 | DEF(zoom_status, 0x73D8) |
|---|
| 24 | DEF(FlashParamsTable,0xFF9754E8) |
|---|
| 25 | |
|---|
| 26 | //DEF(canon_menu_active, 0x6CBC) |
|---|
| 27 | //DEF(canon_shoot_menu_active, 0x6CBC) |
|---|
| 28 | //DEF(recreview_hold, 0x6CBC) |
|---|
| 29 | |
|---|
| 30 | //DEF(canon_menu_active, 0x6CBC) |
|---|
| 31 | //DEF(canon_shoot_menu_active, 0x6CBC) |
|---|
| 32 | |
|---|
| 33 | DEF(movie_status, 0x6EBBC) |
|---|
| 34 | |
|---|
| 35 | canon_menu_active_prev: |
|---|
| 36 | .word 0x10 |
|---|
| 37 | |
|---|
| 38 | .globl canon_menu_active |
|---|
| 39 | canon_menu_active: |
|---|
| 40 | .word canon_menu_active_prev |
|---|
| 41 | |
|---|