Files
TeslaRel410/sda4/BRIEF/MACROS/AG.M
T
CydandClaude Fable 5 db7745fcd0 sda4: commit the Glaze developer hard-drive dump
Un-ignored: the dev drive is the ground truth the restoration and
emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer
source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio
content). Kept in-repo for the pod-owner community.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 19:41:15 -05:00

65 lines
1.2 KiB
Objective-C

;** _init macro.
;** Do not change this macro (always overwritten by Setup).
(macro _init
(
(extern autosave ;** External macro declarations
toggle_re
)
(color 1 14 12 10 13 0x80) ;** Set the screen colors
(autosave) ;** Automatic file save when idle
(set_mouse_type 3 0) ;** Set number of mouse buttons, button one location
(set_ctrl_state 0 1) ;** Enable close button
(set_ctrl_state 1 1) ;** Enable zoom button
(set_ctrl_state 2 1) ;** Enable vertical scroll bar
(set_ctrl_state 3 1) ;** Enable horizontal scroll bar
(set_mouse_action "_mouse_action") ;** Set mouse action macro
(set_btn2_action 1) ;** Set default action for mouse button two
)
)
;** Initials Macro
;** Initials macro.
;** Use this macro for additional customization.
(macro AG
(
;** Put your changes here.
(return)
)
)
;** File Extension Macros, etc.
;** Macros marked "Overwritable" may be overwritten by SETUP.
;** File Extension Macros
;** Overwritable by Setup
(macro default
(
(tabs 9 17)
)
)
;** Overwritable by Setup
(macro .asm
(
(tabs 9 17)
)
)
;** Overwritable by Setup
(macro .c
(
(tabs 4 7)
)
)
;** Overwritable by Setup
(macro .pds
(
(tabs 9 17)
)
)