├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── 3rdparty └── NDK_3.9 │ └── include_h │ ├── classes │ ├── arexx.h │ ├── requester.h │ └── window.h │ ├── clib │ ├── alib_protos.h │ ├── alib_stdio_protos.h │ ├── amigaguide_protos.h │ ├── aml_protos.h │ ├── arexx_protos.h │ ├── asl_protos.h │ ├── battclock_protos.h │ ├── battmem_protos.h │ ├── bevel_protos.h │ ├── bitmap_protos.h │ ├── bullet_protos.h │ ├── button_protos.h │ ├── cardres_protos.h │ ├── checkbox_protos.h │ ├── chooser_protos.h │ ├── cia_protos.h │ ├── clicktab_protos.h │ ├── colorwheel_protos.h │ ├── commodities_protos.h │ ├── console_protos.h │ ├── datatypes_protos.h │ ├── datebrowser_protos.h │ ├── ddebug_protos.h │ ├── debug_protos.h │ ├── disk_protos.h │ ├── diskfont_protos.h │ ├── dos_protos.h │ ├── drawlist_protos.h │ ├── exec_protos.h │ ├── expansion_protos.h │ ├── fuelgauge_protos.h │ ├── gadtools_protos.h │ ├── getfile_protos.h │ ├── getfont_protos.h │ ├── getscreenmode_protos.h │ ├── glyph_protos.h │ ├── graphics_protos.h │ ├── icon_protos.h │ ├── iffparse_protos.h │ ├── input_protos.h │ ├── integer_protos.h │ ├── intuition_protos.h │ ├── keymap_protos.h │ ├── label_protos.h │ ├── layers_protos.h │ ├── layout_protos.h │ ├── listbrowser_protos.h │ ├── locale_protos.h │ ├── lowlevel_protos.h │ ├── macros.h │ ├── mathffp_protos.h │ ├── mathieeedoubbas_protos.h │ ├── mathieeedoubtrans_protos.h │ ├── mathieeesingbas_protos.h │ ├── mathieeesingtrans_protos.h │ ├── mathtrans_protos.h │ ├── misc_protos.h │ ├── nonvolatile_protos.h │ ├── page_protos.h │ ├── palette_protos.h │ ├── penmap_protos.h │ ├── popcycle_protos.h │ ├── potgo_protos.h │ ├── radiobutton_protos.h │ ├── ramdrive_protos.h │ ├── reaction_lib_protos.h │ ├── realtime_protos.h │ ├── requester_protos.h │ ├── resource_protos.h │ ├── rexxsyslib_protos.h │ ├── scroller_protos.h │ ├── slider_protos.h │ ├── space_protos.h │ ├── speedbar_protos.h │ ├── string_protos.h │ ├── texteditor_protos.h │ ├── timer_protos.h │ ├── translator_protos.h │ ├── utility_protos.h │ ├── virtual_protos.h │ ├── wb_protos.h │ └── window_protos.h │ ├── datatypes │ ├── animationclass.h │ ├── datatypes.h │ ├── datatypesclass.h │ ├── pictureclass.h │ ├── soundclass.h │ └── textclass.h │ ├── devices │ ├── audio.h │ ├── bootblock.h │ ├── cd.h │ ├── clipboard.h │ ├── console.h │ ├── conunit.h │ ├── gameport.h │ ├── hardblocks.h │ ├── input.h │ ├── inputevent.h │ ├── keyboard.h │ ├── keymap.h │ ├── narrator.h │ ├── parallel.h │ ├── printer.h │ ├── prtbase.h │ ├── prtgfx.h │ ├── scsidisk.h │ ├── serial.h │ ├── timer.h │ └── trackdisk.h │ ├── diskfont │ ├── diskfont.h │ ├── diskfonttag.h │ ├── glyph.h │ └── oterrors.h │ ├── dos │ ├── datetime.h │ ├── dos.h │ ├── dosasl.h │ ├── dosextens.h │ ├── doshunks.h │ ├── dostags.h │ ├── exall.h │ ├── filehandler.h │ ├── notify.h │ ├── rdargs.h │ ├── record.h │ ├── stdio.h │ └── var.h │ ├── exec │ ├── alerts.h │ ├── avl.h │ ├── devices.h │ ├── errors.h │ ├── exec.h │ ├── execbase.h │ ├── initializers.h │ ├── interrupts.h │ ├── io.h │ ├── libraries.h │ ├── lists.h │ ├── memory.h │ ├── nodes.h │ ├── ports.h │ ├── resident.h │ ├── semaphores.h │ ├── tasks.h │ └── types.h │ ├── gadgets │ ├── button.h │ ├── checkbox.h │ ├── chooser.h │ ├── clicktab.h │ ├── colorwheel.h │ ├── datebrowser.h │ ├── fuelgauge.h │ ├── getfile.h │ ├── getfont.h │ ├── getscreenmode.h │ ├── gradientslider.h │ ├── integer.h │ ├── layout.h │ ├── listbrowser.h │ ├── page.h │ ├── palette.h │ ├── radiobutton.h │ ├── scroller.h │ ├── slider.h │ ├── space.h │ ├── speedbar.h │ ├── string.h │ ├── tapedeck.h │ ├── texteditor.h │ └── virtual.h │ ├── graphics │ ├── clip.h │ ├── coerce.h │ ├── collide.h │ ├── copper.h │ ├── display.h │ ├── displayinfo.h │ ├── gels.h │ ├── gfx.h │ ├── gfxbase.h │ ├── gfxmacros.h │ ├── gfxnodes.h │ ├── graphint.h │ ├── layers.h │ ├── modeid.h │ ├── monitor.h │ ├── rastport.h │ ├── regions.h │ ├── rpattr.h │ ├── scale.h │ ├── sprite.h │ ├── text.h │ ├── videocontrol.h │ └── view.h │ ├── hardware │ ├── adkbits.h │ ├── blit.h │ ├── cia.h │ ├── custom.h │ ├── dmabits.h │ └── intbits.h │ ├── images │ ├── bevel.h │ ├── bitmap.h │ ├── drawlist.h │ ├── glyph.h │ ├── label.h │ └── penmap.h │ ├── intuition │ ├── cghooks.h │ ├── classes.h │ ├── classusr.h │ ├── gadgetclass.h │ ├── icclass.h │ ├── imageclass.h │ ├── intuition.h │ ├── intuitionbase.h │ ├── iobsolete.h │ ├── pointerclass.h │ ├── preferences.h │ ├── screens.h │ └── sghooks.h │ ├── libraries │ ├── HDW_CallBackMsgs.h │ ├── amigaguide.h │ ├── aml.h │ ├── asl.h │ ├── commodities.h │ ├── configregs.h │ ├── configvars.h │ ├── diskfont.h │ ├── diskfonttag.h │ ├── dos.h │ ├── dosextens.h │ ├── expansion.h │ ├── expansionbase.h │ ├── filehandler.h │ ├── gadtools.h │ ├── hdwrench.h │ ├── iffparse.h │ ├── locale.h │ ├── lowlevel.h │ ├── mathffp.h │ ├── mathieeedp.h │ ├── mathieeesp.h │ ├── mathlibrary.h │ ├── mathresource.h │ ├── nonvolatile.h │ ├── realtime.h │ ├── resource.h │ └── translator.h │ ├── pack.h │ ├── pragma │ ├── amigaguide_lib.h │ ├── aml_lib.h │ ├── arexx_lib.h │ ├── asl_lib.h │ ├── battclock_lib.h │ ├── battmem_lib.h │ ├── bevel_lib.h │ ├── bitmap_lib.h │ ├── bullet_lib.h │ ├── button_lib.h │ ├── cardres_lib.h │ ├── checkbox_lib.h │ ├── chooser_lib.h │ ├── cia_lib.h │ ├── clicktab_lib.h │ ├── colorwheel_lib.h │ ├── commodities_lib.h │ ├── console_lib.h │ ├── datatypes_lib.h │ ├── datebrowser_lib.h │ ├── disk_lib.h │ ├── diskfont_lib.h │ ├── dos_lib.h │ ├── drawlist_lib.h │ ├── exec_lib.h │ ├── expansion_lib.h │ ├── fuelgauge_lib.h │ ├── gadtools_lib.h │ ├── getfile_lib.h │ ├── getfont_lib.h │ ├── getscreenmode_lib.h │ ├── glyph_lib.h │ ├── graphics_lib.h │ ├── icon_lib.h │ ├── iffparse_lib.h │ ├── input_lib.h │ ├── integer_lib.h │ ├── intuition_lib.h │ ├── keymap_lib.h │ ├── label_lib.h │ ├── layers_lib.h │ ├── layout_lib.h │ ├── listbrowser_lib.h │ ├── locale_lib.h │ ├── lowlevel_lib.h │ ├── mathffp_lib.h │ ├── mathieeedoubbas_lib.h │ ├── mathieeedoubtrans_lib.h │ ├── mathieeesingbas_lib.h │ ├── mathieeesingtrans_lib.h │ ├── mathtrans_lib.h │ ├── misc_lib.h │ ├── nonvolatile_lib.h │ ├── palette_lib.h │ ├── penmap_lib.h │ ├── popcycle_lib.h │ ├── potgo_lib.h │ ├── radiobutton_lib.h │ ├── ramdrive_lib.h │ ├── realtime_lib.h │ ├── requester_lib.h │ ├── resource_lib.h │ ├── rexxsyslib_lib.h │ ├── scroller_lib.h │ ├── slider_lib.h │ ├── space_lib.h │ ├── speedbar_lib.h │ ├── string_lib.h │ ├── texteditor_lib.h │ ├── timer_lib.h │ ├── translator_lib.h │ ├── utility_lib.h │ ├── virtual_lib.h │ ├── wb_lib.h │ └── window_lib.h │ ├── pragmas │ ├── amigaguide_pragmas.h │ ├── aml_pragmas.h │ ├── arexx_pragmas.h │ ├── asl_pragmas.h │ ├── battclock_pragmas.h │ ├── battmem_pragmas.h │ ├── bevel_pragmas.h │ ├── bitmap_pragmas.h │ ├── bullet_pragmas.h │ ├── button_pragmas.h │ ├── cardres_pragmas.h │ ├── checkbox_pragmas.h │ ├── chooser_pragmas.h │ ├── cia_pragmas.h │ ├── clicktab_pragmas.h │ ├── colorwheel_pragmas.h │ ├── commodities_pragmas.h │ ├── console_pragmas.h │ ├── datatypes_pragmas.h │ ├── datebrowser_pragmas.h │ ├── disk_pragmas.h │ ├── diskfont_pragmas.h │ ├── dos_pragmas.h │ ├── drawlist_pragmas.h │ ├── exec_pragmas.h │ ├── exec_sysbase_pragmas.h │ ├── expansion_pragmas.h │ ├── fuelgauge_pragmas.h │ ├── gadtools_pragmas.h │ ├── getfile_pragmas.h │ ├── getfont_pragmas.h │ ├── getscreenmode_pragmas.h │ ├── glyph_pragmas.h │ ├── graphics_pragmas.h │ ├── hdwrench_pragmas.h │ ├── icon_pragmas.h │ ├── iffparse_pragmas.h │ ├── input_pragmas.h │ ├── integer_pragmas.h │ ├── intuition_pragmas.h │ ├── keymap_pragmas.h │ ├── label_pragmas.h │ ├── layers_pragmas.h │ ├── layout_pragmas.h │ ├── listbrowser_pragmas.h │ ├── locale_pragmas.h │ ├── lowlevel_pragmas.h │ ├── mathffp_pragmas.h │ ├── mathieeedoubbas_pragmas.h │ ├── mathieeedoubtrans_pragmas.h │ ├── mathieeesingbas_pragmas.h │ ├── mathieeesingtrans_pragmas.h │ ├── mathtrans_pragmas.h │ ├── misc_pragmas.h │ ├── nonvolatile_pragmas.h │ ├── palette_pragmas.h │ ├── penmap_pragmas.h │ ├── popcycle_pragmas.h │ ├── potgo_pragmas.h │ ├── radiobutton_pragmas.h │ ├── ramdrive_pragmas.h │ ├── realtime_pragmas.h │ ├── requester_pragmas.h │ ├── resource_pragmas.h │ ├── rexxsyslib_pragmas.h │ ├── scroller_pragmas.h │ ├── slider_pragmas.h │ ├── space_pragmas.h │ ├── speedbar_pragmas.h │ ├── string_pragmas.h │ ├── texteditor_pragmas.h │ ├── timer_pragmas.h │ ├── translator_pragmas.h │ ├── utility_pragmas.h │ ├── virtual_pragmas.h │ ├── wb_pragmas.h │ └── window_pragmas.h │ ├── prefs │ ├── asl.h │ ├── font.h │ ├── icontrol.h │ ├── input.h │ ├── locale.h │ ├── overscan.h │ ├── palette.h │ ├── pointer.h │ ├── prefhdr.h │ ├── printergfx.h │ ├── printerps.h │ ├── printertxt.h │ ├── reaction.h │ ├── screenmode.h │ ├── serial.h │ ├── sound.h │ ├── wbpattern.h │ └── workbench.h │ ├── proto │ ├── amigaguide.h │ ├── aml.h │ ├── arexx.h │ ├── asl.h │ ├── battclock.h │ ├── battmem.h │ ├── bevel.h │ ├── bitmap.h │ ├── bullet.h │ ├── button.h │ ├── cardres.h │ ├── checkbox.h │ ├── chooser.h │ ├── cia.h │ ├── clicktab.h │ ├── colorwheel.h │ ├── commodities.h │ ├── console.h │ ├── datatypes.h │ ├── datebrowser.h │ ├── disk.h │ ├── diskfont.h │ ├── dos.h │ ├── drawlist.h │ ├── exec.h │ ├── expansion.h │ ├── fuelgauge.h │ ├── gadtools.h │ ├── getfile.h │ ├── getfont.h │ ├── getscreenmode.h │ ├── glyph.h │ ├── graphics.h │ ├── icon.h │ ├── iffparse.h │ ├── input.h │ ├── integer.h │ ├── intuition.h │ ├── keymap.h │ ├── label.h │ ├── layers.h │ ├── layout.h │ ├── listbrowser.h │ ├── locale.h │ ├── lowlevel.h │ ├── mathffp.h │ ├── mathieeedoubbas.h │ ├── mathieeedoubtrans.h │ ├── mathieeesingbas.h │ ├── mathieeesingtrans.h │ ├── mathtrans.h │ ├── misc.h │ ├── nonvolatile.h │ ├── palette.h │ ├── penmap.h │ ├── popcycle.h │ ├── potgo.h │ ├── radiobutton.h │ ├── ramdrive.h │ ├── realtime.h │ ├── requester.h │ ├── resource.h │ ├── rexxsyslib.h │ ├── scroller.h │ ├── slider.h │ ├── space.h │ ├── speedbar.h │ ├── string.h │ ├── texteditor.h │ ├── timer.h │ ├── translator.h │ ├── utility.h │ ├── virtual.h │ ├── wb.h │ └── window.h │ ├── reaction │ ├── reaction.h │ ├── reaction_class.h │ ├── reaction_macros.h │ └── reaction_prefs.h │ ├── resources │ ├── battclock.h │ ├── battmem.h │ ├── battmembitsamiga.h │ ├── battmembitsamix.h │ ├── battmembitsshared.h │ ├── card.h │ ├── cia.h │ ├── ciabase.h │ ├── disk.h │ ├── filesysres.h │ ├── mathresource.h │ ├── misc.h │ └── potgo.h │ ├── rexx │ ├── errors.h │ ├── rexxio.h │ ├── rxslib.h │ └── storage.h │ ├── utility │ ├── date.h │ ├── hooks.h │ ├── name.h │ ├── pack.h │ ├── tagitem.h │ └── utility.h │ └── workbench │ ├── icon.h │ ├── startup.h │ └── workbench.h ├── Module.manifest ├── README.md ├── amiga_ndk39.prf ├── data ├── amiga_ndk39.gdt ├── fd │ ├── amigaguide_lib.fd │ ├── aml_lib.fd │ ├── arexx_lib.fd │ ├── arp_lib.fd │ ├── asl_lib.fd │ ├── battclock_lib.fd │ ├── battmem_lib.fd │ ├── bevel_lib.fd │ ├── bitmap_lib.fd │ ├── bullet_lib.fd │ ├── button_lib.fd │ ├── cardres_lib.fd │ ├── checkbox_lib.fd │ ├── chooser_lib.fd │ ├── cia_lib.fd │ ├── clicktab_lib.fd │ ├── colorwheel_lib.fd │ ├── commodities_lib.fd │ ├── console_lib.fd │ ├── datatypes_lib.fd │ ├── datebrowser_lib.fd │ ├── disk_lib.fd │ ├── diskfont_lib.fd │ ├── dos_lib.fd │ ├── drawlist_lib.fd │ ├── dtclass_lib.fd │ ├── exec_lib.fd │ ├── expansion_lib.fd │ ├── fuelgauge_lib.fd │ ├── gadtools_lib.fd │ ├── getfile_lib.fd │ ├── getfont_lib.fd │ ├── getscreenmode_lib.fd │ ├── glyph_lib.fd │ ├── graphics_lib.fd │ ├── hdwrench.fd │ ├── icon_lib.fd │ ├── iffparse_lib.fd │ ├── input_lib.fd │ ├── integer_lib.fd │ ├── intuition_lib.fd │ ├── keymap_lib.fd │ ├── label_lib.fd │ ├── layers_lib.fd │ ├── layout_lib.fd │ ├── listbrowser_lib.fd │ ├── locale_lib.fd │ ├── lowlevel_lib.fd │ ├── mathffp_lib.fd │ ├── mathieeedoubbas_lib.fd │ ├── mathieeedoubtrans_lib.fd │ ├── mathieeesingbas_lib.fd │ ├── mathieeesingtrans_lib.fd │ ├── mathtrans_lib.fd │ ├── misc_lib.fd │ ├── nonvolatile_lib.fd │ ├── palette_lib.fd │ ├── penmap_lib.fd │ ├── popcycle_lib.fd │ ├── potgo_lib.fd │ ├── radiobutton_lib.fd │ ├── ramdrive_lib.fd │ ├── realtime_lib.fd │ ├── requester_lib.fd │ ├── resource_lib.fd │ ├── rexxsyslib_lib.fd │ ├── scroller_lib.fd │ ├── slider_lib.fd │ ├── space_lib.fd │ ├── speedbar_lib.fd │ ├── string_lib.fd │ ├── texteditor_lib.fd │ ├── timer_lib.fd │ ├── translator_lib.fd │ ├── utility_lib.fd │ ├── virtual_lib.fd │ ├── wb_lib.fd │ └── window_lib.fd └── sfd │ ├── amigaguide_lib.sfd │ ├── aml_lib.sfd │ ├── arexx_lib.sfd │ ├── asl_lib.sfd │ ├── battclock_lib.sfd │ ├── battmem_lib.sfd │ ├── bevel_lib.sfd │ ├── bitmap_lib.sfd │ ├── bullet_lib.sfd │ ├── button_lib.sfd │ ├── card_lib.sfd │ ├── checkbox_lib.sfd │ ├── chooser_lib.sfd │ ├── cia_lib.sfd │ ├── clicktab_lib.sfd │ ├── colorwheel_lib.sfd │ ├── commodities_lib.sfd │ ├── console_lib.sfd │ ├── datatypes_lib.sfd │ ├── datebrowser_lib.sfd │ ├── disk_lib.sfd │ ├── diskfont_lib.sfd │ ├── dos_lib.sfd │ ├── drawlist_lib.sfd │ ├── dtclass_lib.sfd │ ├── exec_lib.sfd │ ├── expansion_lib.sfd │ ├── fuelgauge_lib.sfd │ ├── gadtools_lib.sfd │ ├── getfile_lib.sfd │ ├── getfont_lib.sfd │ ├── getscreenmode_lib.sfd │ ├── glyph_lib.sfd │ ├── graphics_lib.sfd │ ├── icon_lib.sfd │ ├── iffparse_lib.sfd │ ├── input_lib.sfd │ ├── integer_lib.sfd │ ├── intuition_lib.sfd │ ├── keymap_lib.sfd │ ├── label_lib.sfd │ ├── layers_lib.sfd │ ├── layout_lib.sfd │ ├── listbrowser_lib.sfd │ ├── locale_lib.sfd │ ├── lowlevel_lib.sfd │ ├── mathffp_lib.sfd │ ├── mathieeedoubbas_lib.sfd │ ├── mathieeedoubtrans_lib.sfd │ ├── mathieeesingbas_lib.sfd │ ├── mathieeesingtrans_lib.sfd │ ├── mathtrans_lib.sfd │ ├── misc_lib.sfd │ ├── nonvolatile_lib.sfd │ ├── palette_lib.sfd │ ├── penmap_lib.sfd │ ├── popcycle_lib.sfd │ ├── potgo_lib.sfd │ ├── radiobutton_lib.sfd │ ├── ramdrive_lib.sfd │ ├── realtime_lib.sfd │ ├── requester_lib.sfd │ ├── resource_lib.sfd │ ├── rexxsyslib_lib.sfd │ ├── scroller_lib.sfd │ ├── slider_lib.sfd │ ├── space_lib.sfd │ ├── speedbar_lib.sfd │ ├── string_lib.sfd │ ├── texteditor_lib.sfd │ ├── timer_lib.sfd │ ├── translator_lib.sfd │ ├── utility_lib.sfd │ ├── virtual_lib.sfd │ ├── wb_lib.sfd │ └── window_lib.sfd ├── extension.properties ├── ghidra_scripts ├── ApplyRegBase.java └── CopperList.java ├── java-formatter.xml ├── src ├── main │ └── java │ │ ├── amiga │ │ ├── AmigaHunkAnalyzer.java │ │ ├── AmigaHunkLibFileSystem.java │ │ ├── AmigaHunkLoader.java │ │ ├── AmigaKickstartLoader.java │ │ ├── AmigaUssLoader.java │ │ └── AmigaUtils.java │ │ ├── fd │ │ ├── FdFunction.java │ │ ├── FdFunctionsInLibs.java │ │ ├── FdLibFunctions.java │ │ └── FdParser.java │ │ ├── hunk │ │ ├── BinFmtHunk.java │ │ ├── BinImage.java │ │ ├── DebugInfo.java │ │ ├── ExtType.java │ │ ├── HunkBlock.java │ │ ├── HunkBlockFile.java │ │ ├── HunkBlockType.java │ │ ├── HunkBreakBlock.java │ │ ├── HunkDebug.java │ │ ├── HunkDebugAny.java │ │ ├── HunkDebugBlock.java │ │ ├── HunkDebugLine.java │ │ ├── HunkEndBlock.java │ │ ├── HunkExtBlock.java │ │ ├── HunkHeaderBlock.java │ │ ├── HunkIndexBlock.java │ │ ├── HunkIndexHunkEntry.java │ │ ├── HunkIndexSymbolDef.java │ │ ├── HunkIndexSymbolRef.java │ │ ├── HunkIndexUnitEntry.java │ │ ├── HunkLibBlock.java │ │ ├── HunkLoadSegFile.java │ │ ├── HunkNameBlock.java │ │ ├── HunkOverlayBlock.java │ │ ├── HunkParseError.java │ │ ├── HunkRelocBlock.java │ │ ├── HunkRelocLongBlock.java │ │ ├── HunkRelocWordBlock.java │ │ ├── HunkSegment.java │ │ ├── HunkSegmentBlock.java │ │ ├── HunkSymbolBlock.java │ │ ├── HunkType.java │ │ ├── HunkUnitBlock.java │ │ ├── IHunkBlock.java │ │ ├── Reloc.java │ │ ├── RelocData.java │ │ ├── Relocate.java │ │ ├── Segment.java │ │ ├── SegmentType.java │ │ ├── Symbol.java │ │ ├── SymbolData.java │ │ ├── XDefinition.java │ │ ├── XReference.java │ │ └── XReferenceType.java │ │ ├── structs │ │ ├── CopperInst.java │ │ ├── CustomChipRegisters.java │ │ ├── InitData_Type.java │ │ ├── InitTable.java │ │ └── M68KVectors.java │ │ └── uss │ │ └── UssFile.java └── test │ └── java │ ├── fd │ └── FdParserTest.java │ └── uss │ └── UssTest.java └── test └── uss ├── bobble-title.uss ├── desertdream-dots.uss ├── done endscreen.uss └── enigma ham fractal.uss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/classes/arexx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/classes/arexx.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/classes/requester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/classes/requester.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/classes/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/classes/window.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/alib_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/alib_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/alib_stdio_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/alib_stdio_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/amigaguide_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/amigaguide_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/aml_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/aml_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/arexx_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/arexx_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/asl_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/asl_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/battclock_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/battclock_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/battmem_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/battmem_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/bevel_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/bevel_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/bitmap_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/bitmap_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/bullet_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/bullet_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/button_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/button_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/cardres_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/cardres_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/checkbox_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/checkbox_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/chooser_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/chooser_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/cia_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/cia_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/clicktab_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/clicktab_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/colorwheel_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/colorwheel_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/commodities_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/commodities_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/console_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/console_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/datatypes_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/datatypes_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/datebrowser_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/datebrowser_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/ddebug_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/ddebug_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/debug_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/debug_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/disk_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/disk_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/diskfont_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/diskfont_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/dos_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/dos_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/drawlist_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/drawlist_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/exec_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/exec_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/expansion_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/expansion_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/fuelgauge_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/fuelgauge_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/gadtools_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/gadtools_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/getfile_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/getfile_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/getfont_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/getfont_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/getscreenmode_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/getscreenmode_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/glyph_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/glyph_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/graphics_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/graphics_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/icon_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/icon_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/iffparse_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/iffparse_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/input_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/input_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/integer_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/integer_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/intuition_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/intuition_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/keymap_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/keymap_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/label_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/label_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/layers_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/layers_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/layout_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/layout_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/listbrowser_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/listbrowser_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/locale_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/locale_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/lowlevel_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/lowlevel_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/macros.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/mathffp_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/mathffp_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/mathieeedoubbas_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/mathieeedoubbas_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/mathieeedoubtrans_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/mathieeedoubtrans_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/mathieeesingbas_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/mathieeesingbas_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/mathieeesingtrans_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/mathieeesingtrans_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/mathtrans_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/mathtrans_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/misc_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/misc_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/nonvolatile_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/nonvolatile_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/page_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/page_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/palette_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/palette_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/penmap_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/penmap_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/popcycle_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/popcycle_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/potgo_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/potgo_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/radiobutton_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/radiobutton_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/ramdrive_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/ramdrive_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/reaction_lib_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/reaction_lib_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/realtime_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/realtime_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/requester_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/requester_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/resource_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/resource_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/rexxsyslib_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/rexxsyslib_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/scroller_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/scroller_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/slider_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/slider_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/space_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/space_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/speedbar_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/speedbar_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/string_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/string_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/texteditor_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/texteditor_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/timer_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/timer_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/translator_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/translator_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/utility_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/utility_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/virtual_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/virtual_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/wb_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/wb_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/clib/window_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/clib/window_protos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/datatypes/animationclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/datatypes/animationclass.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/datatypes/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/datatypes/datatypes.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/datatypes/datatypesclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/datatypes/datatypesclass.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/datatypes/pictureclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/datatypes/pictureclass.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/datatypes/soundclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/datatypes/soundclass.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/datatypes/textclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/datatypes/textclass.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/audio.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/bootblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/bootblock.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/cd.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/clipboard.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/console.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/conunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/conunit.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/gameport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/gameport.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/hardblocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/hardblocks.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/input.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/inputevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/inputevent.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/keyboard.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/keymap.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/narrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/narrator.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/parallel.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/printer.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/prtbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/prtbase.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/prtgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/prtgfx.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/scsidisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/scsidisk.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/serial.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/timer.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/devices/trackdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/devices/trackdisk.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/diskfont/diskfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/diskfont/diskfont.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/diskfont/diskfonttag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/diskfont/diskfonttag.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/diskfont/glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/diskfont/glyph.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/diskfont/oterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/diskfont/oterrors.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/datetime.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/dos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/dosasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/dosasl.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/dosextens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/dosextens.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/doshunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/doshunks.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/dostags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/dostags.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/exall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/exall.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/filehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/filehandler.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/notify.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/rdargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/rdargs.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/record.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/stdio.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/dos/var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/dos/var.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/alerts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/alerts.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/avl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/avl.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/devices.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/errors.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/exec.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/execbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/execbase.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/initializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/initializers.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/interrupts.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/io.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/libraries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/libraries.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/lists.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/memory.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/nodes.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/ports.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/resident.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/resident.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/semaphores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/semaphores.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/tasks.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/exec/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/exec/types.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/button.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/checkbox.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/chooser.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/clicktab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/clicktab.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/colorwheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/colorwheel.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/datebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/datebrowser.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/fuelgauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/fuelgauge.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/getfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/getfile.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/getfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/getfont.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/getscreenmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/getscreenmode.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/gradientslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/gradientslider.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/integer.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/layout.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/listbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/listbrowser.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/page.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/palette.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/radiobutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/radiobutton.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/scroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/scroller.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/slider.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/space.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/speedbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/speedbar.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/string.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/tapedeck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/tapedeck.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/texteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/texteditor.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/gadgets/virtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/gadgets/virtual.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/clip.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/coerce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/coerce.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/collide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/collide.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/copper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/copper.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/display.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/displayinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/displayinfo.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/gels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/gels.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/gfx.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/gfxbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/gfxbase.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/gfxmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/gfxmacros.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/gfxnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/gfxnodes.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/graphint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/graphint.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/layers.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/modeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/modeid.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/monitor.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/rastport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/rastport.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/regions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/regions.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/rpattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/rpattr.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/scale.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/sprite.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/text.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/videocontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/videocontrol.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/graphics/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/graphics/view.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/hardware/adkbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/hardware/adkbits.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/hardware/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/hardware/blit.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/hardware/cia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/hardware/cia.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/hardware/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/hardware/custom.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/hardware/dmabits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/hardware/dmabits.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/hardware/intbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/hardware/intbits.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/images/bevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/images/bevel.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/images/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/images/bitmap.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/images/drawlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/images/drawlist.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/images/glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/images/glyph.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/images/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/images/label.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/images/penmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/images/penmap.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/cghooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/cghooks.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/classes.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/classusr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/classusr.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/gadgetclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/gadgetclass.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/icclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/icclass.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/imageclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/imageclass.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/intuition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/intuition.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/intuitionbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/intuitionbase.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/iobsolete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/iobsolete.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/pointerclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/pointerclass.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/preferences.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/screens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/screens.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/intuition/sghooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/intuition/sghooks.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/HDW_CallBackMsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/HDW_CallBackMsgs.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/amigaguide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/amigaguide.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/aml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/aml.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/asl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/asl.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/commodities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/commodities.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/configregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/configregs.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/configvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/configvars.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/diskfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/diskfont.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/diskfonttag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/diskfonttag.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/dos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/dosextens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/dosextens.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/expansion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/expansion.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/expansionbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/expansionbase.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/filehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/filehandler.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/gadtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/gadtools.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/hdwrench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/hdwrench.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/iffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/iffparse.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/locale.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/lowlevel.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/mathffp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/mathffp.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/mathieeedp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/mathieeedp.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/mathieeesp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/mathieeesp.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/mathlibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/mathlibrary.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/mathresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/mathresource.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/nonvolatile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/nonvolatile.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/realtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/realtime.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/resource.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/libraries/translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/libraries/translator.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pack.h: -------------------------------------------------------------------------------- 1 | #pragma pack(push, 2) -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/amigaguide_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/amigaguide_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/aml_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/aml_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/arexx_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/arexx_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/asl_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/asl_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/battclock_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/battclock_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/battmem_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/battmem_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/bevel_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/bevel_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/bitmap_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/bitmap_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/bullet_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/bullet_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/button_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/button_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/cardres_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/cardres_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/checkbox_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/checkbox_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/chooser_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/chooser_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/cia_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/cia_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/clicktab_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/clicktab_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/colorwheel_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/colorwheel_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/commodities_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/commodities_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/console_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/console_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/datatypes_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/datatypes_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/datebrowser_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/datebrowser_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/disk_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/disk_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/diskfont_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/diskfont_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/dos_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/dos_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/drawlist_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/drawlist_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/exec_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/exec_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/expansion_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/expansion_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/fuelgauge_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/fuelgauge_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/gadtools_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/gadtools_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/getfile_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/getfile_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/getfont_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/getfont_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/getscreenmode_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/getscreenmode_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/glyph_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/glyph_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/graphics_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/graphics_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/icon_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/icon_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/iffparse_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/iffparse_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/input_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/input_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/integer_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/integer_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/intuition_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/intuition_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/keymap_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/keymap_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/label_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/label_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/layers_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/layers_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/layout_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/layout_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/listbrowser_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/listbrowser_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/locale_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/locale_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/lowlevel_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/lowlevel_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/mathffp_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/mathffp_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/mathieeedoubbas_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/mathieeedoubbas_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/mathieeedoubtrans_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/mathieeedoubtrans_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/mathieeesingbas_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/mathieeesingbas_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/mathieeesingtrans_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/mathieeesingtrans_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/mathtrans_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/mathtrans_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/misc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/misc_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/nonvolatile_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/nonvolatile_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/palette_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/palette_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/penmap_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/penmap_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/popcycle_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/popcycle_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/potgo_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/potgo_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/radiobutton_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/radiobutton_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/ramdrive_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/ramdrive_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/realtime_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/realtime_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/requester_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/requester_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/resource_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/resource_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/rexxsyslib_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/rexxsyslib_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/scroller_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/scroller_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/slider_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/slider_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/space_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/space_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/speedbar_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/speedbar_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/string_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/string_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/texteditor_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/texteditor_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/timer_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/timer_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/translator_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/translator_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/utility_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/utility_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/virtual_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/virtual_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/wb_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/wb_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragma/window_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragma/window_lib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/amigaguide_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/amigaguide_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/aml_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/aml_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/arexx_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/arexx_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/asl_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/asl_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/battclock_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/battclock_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/battmem_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/battmem_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/bevel_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/bevel_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/bitmap_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/bitmap_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/bullet_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/bullet_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/button_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/button_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/cardres_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/cardres_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/checkbox_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/checkbox_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/chooser_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/chooser_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/cia_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/cia_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/clicktab_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/clicktab_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/colorwheel_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/colorwheel_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/commodities_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/commodities_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/console_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/console_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/datatypes_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/datatypes_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/datebrowser_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/datebrowser_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/disk_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/disk_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/diskfont_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/diskfont_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/dos_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/dos_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/drawlist_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/drawlist_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/exec_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/exec_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/exec_sysbase_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/exec_sysbase_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/expansion_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/expansion_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/fuelgauge_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/fuelgauge_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/gadtools_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/gadtools_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/getfile_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/getfile_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/getfont_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/getfont_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/getscreenmode_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/getscreenmode_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/glyph_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/glyph_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/graphics_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/graphics_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/hdwrench_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/hdwrench_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/icon_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/icon_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/iffparse_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/iffparse_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/input_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/input_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/integer_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/integer_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/intuition_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/intuition_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/keymap_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/keymap_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/label_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/label_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/layers_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/layers_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/layout_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/layout_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/listbrowser_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/listbrowser_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/locale_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/locale_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/lowlevel_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/lowlevel_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/mathffp_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/mathffp_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/mathieeedoubbas_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/mathieeedoubbas_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/mathieeedoubtrans_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/mathieeedoubtrans_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/mathieeesingbas_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/mathieeesingbas_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/mathieeesingtrans_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/mathieeesingtrans_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/mathtrans_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/mathtrans_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/misc_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/misc_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/nonvolatile_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/nonvolatile_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/palette_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/palette_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/penmap_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/penmap_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/popcycle_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/popcycle_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/potgo_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/potgo_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/radiobutton_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/radiobutton_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/ramdrive_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/ramdrive_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/realtime_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/realtime_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/requester_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/requester_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/resource_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/resource_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/rexxsyslib_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/rexxsyslib_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/scroller_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/scroller_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/slider_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/slider_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/space_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/space_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/speedbar_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/speedbar_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/string_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/string_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/texteditor_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/texteditor_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/timer_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/timer_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/translator_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/translator_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/utility_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/utility_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/virtual_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/virtual_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/wb_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/wb_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/pragmas/window_pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/pragmas/window_pragmas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/asl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/asl.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/font.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/icontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/icontrol.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/input.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/locale.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/overscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/overscan.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/palette.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/pointer.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/prefhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/prefhdr.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/printergfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/printergfx.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/printerps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/printerps.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/printertxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/printertxt.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/reaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/reaction.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/screenmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/screenmode.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/serial.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/sound.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/wbpattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/wbpattern.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/prefs/workbench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/prefs/workbench.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/amigaguide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/amigaguide.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/aml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/aml.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/arexx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/arexx.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/asl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/asl.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/battclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/battclock.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/battmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/battmem.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/bevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/bevel.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/bitmap.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/bullet.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/button.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/cardres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/cardres.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/checkbox.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/chooser.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/cia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/cia.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/clicktab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/clicktab.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/colorwheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/colorwheel.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/commodities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/commodities.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/console.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/datatypes.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/datebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/datebrowser.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/disk.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/diskfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/diskfont.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/dos.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/drawlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/drawlist.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/exec.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/expansion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/expansion.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/fuelgauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/fuelgauge.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/gadtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/gadtools.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/getfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/getfile.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/getfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/getfont.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/getscreenmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/getscreenmode.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/glyph.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/graphics.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/icon.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/iffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/iffparse.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/input.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/integer.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/intuition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/intuition.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/keymap.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/label.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/layers.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/layout.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/listbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/listbrowser.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/locale.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/lowlevel.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/mathffp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/mathffp.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/mathieeedoubbas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/mathieeedoubbas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/mathieeedoubtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/mathieeedoubtrans.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/mathieeesingbas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/mathieeesingbas.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/mathieeesingtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/mathieeesingtrans.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/mathtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/mathtrans.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/misc.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/nonvolatile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/nonvolatile.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/palette.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/penmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/penmap.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/popcycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/popcycle.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/potgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/potgo.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/radiobutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/radiobutton.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/ramdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/ramdrive.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/realtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/realtime.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/requester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/requester.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/resource.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/rexxsyslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/rexxsyslib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/scroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/scroller.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/slider.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/space.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/speedbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/speedbar.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/string.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/texteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/texteditor.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/timer.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/translator.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/utility.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/virtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/virtual.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/wb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/wb.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/proto/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/proto/window.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/reaction/reaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/reaction/reaction.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/reaction/reaction_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/reaction/reaction_class.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/reaction/reaction_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/reaction/reaction_macros.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/reaction/reaction_prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/reaction/reaction_prefs.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/battclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/battclock.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/battmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/battmem.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/battmembitsamiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/battmembitsamiga.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/battmembitsamix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/battmembitsamix.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/battmembitsshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/battmembitsshared.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/card.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/cia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/cia.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/ciabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/ciabase.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/disk.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/filesysres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/filesysres.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/mathresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/mathresource.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/misc.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/resources/potgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/resources/potgo.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/rexx/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/rexx/errors.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/rexx/rexxio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/rexx/rexxio.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/rexx/rxslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/rexx/rxslib.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/rexx/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/rexx/storage.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/utility/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/utility/date.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/utility/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/utility/hooks.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/utility/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/utility/name.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/utility/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/utility/pack.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/utility/tagitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/utility/tagitem.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/utility/utility.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/workbench/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/workbench/icon.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/workbench/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/workbench/startup.h -------------------------------------------------------------------------------- /3rdparty/NDK_3.9/include_h/workbench/workbench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/3rdparty/NDK_3.9/include_h/workbench/workbench.h -------------------------------------------------------------------------------- /Module.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/README.md -------------------------------------------------------------------------------- /amiga_ndk39.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/amiga_ndk39.prf -------------------------------------------------------------------------------- /data/amiga_ndk39.gdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/amiga_ndk39.gdt -------------------------------------------------------------------------------- /data/fd/amigaguide_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/amigaguide_lib.fd -------------------------------------------------------------------------------- /data/fd/aml_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/aml_lib.fd -------------------------------------------------------------------------------- /data/fd/arexx_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/arexx_lib.fd -------------------------------------------------------------------------------- /data/fd/arp_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/arp_lib.fd -------------------------------------------------------------------------------- /data/fd/asl_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/asl_lib.fd -------------------------------------------------------------------------------- /data/fd/battclock_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/battclock_lib.fd -------------------------------------------------------------------------------- /data/fd/battmem_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/battmem_lib.fd -------------------------------------------------------------------------------- /data/fd/bevel_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/bevel_lib.fd -------------------------------------------------------------------------------- /data/fd/bitmap_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/bitmap_lib.fd -------------------------------------------------------------------------------- /data/fd/bullet_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/bullet_lib.fd -------------------------------------------------------------------------------- /data/fd/button_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/button_lib.fd -------------------------------------------------------------------------------- /data/fd/cardres_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/cardres_lib.fd -------------------------------------------------------------------------------- /data/fd/checkbox_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/checkbox_lib.fd -------------------------------------------------------------------------------- /data/fd/chooser_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/chooser_lib.fd -------------------------------------------------------------------------------- /data/fd/cia_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/cia_lib.fd -------------------------------------------------------------------------------- /data/fd/clicktab_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/clicktab_lib.fd -------------------------------------------------------------------------------- /data/fd/colorwheel_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/colorwheel_lib.fd -------------------------------------------------------------------------------- /data/fd/commodities_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/commodities_lib.fd -------------------------------------------------------------------------------- /data/fd/console_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/console_lib.fd -------------------------------------------------------------------------------- /data/fd/datatypes_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/datatypes_lib.fd -------------------------------------------------------------------------------- /data/fd/datebrowser_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/datebrowser_lib.fd -------------------------------------------------------------------------------- /data/fd/disk_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/disk_lib.fd -------------------------------------------------------------------------------- /data/fd/diskfont_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/diskfont_lib.fd -------------------------------------------------------------------------------- /data/fd/dos_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/dos_lib.fd -------------------------------------------------------------------------------- /data/fd/drawlist_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/drawlist_lib.fd -------------------------------------------------------------------------------- /data/fd/dtclass_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/dtclass_lib.fd -------------------------------------------------------------------------------- /data/fd/exec_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/exec_lib.fd -------------------------------------------------------------------------------- /data/fd/expansion_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/expansion_lib.fd -------------------------------------------------------------------------------- /data/fd/fuelgauge_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/fuelgauge_lib.fd -------------------------------------------------------------------------------- /data/fd/gadtools_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/gadtools_lib.fd -------------------------------------------------------------------------------- /data/fd/getfile_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/getfile_lib.fd -------------------------------------------------------------------------------- /data/fd/getfont_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/getfont_lib.fd -------------------------------------------------------------------------------- /data/fd/getscreenmode_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/getscreenmode_lib.fd -------------------------------------------------------------------------------- /data/fd/glyph_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/glyph_lib.fd -------------------------------------------------------------------------------- /data/fd/graphics_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/graphics_lib.fd -------------------------------------------------------------------------------- /data/fd/hdwrench.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/hdwrench.fd -------------------------------------------------------------------------------- /data/fd/icon_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/icon_lib.fd -------------------------------------------------------------------------------- /data/fd/iffparse_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/iffparse_lib.fd -------------------------------------------------------------------------------- /data/fd/input_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/input_lib.fd -------------------------------------------------------------------------------- /data/fd/integer_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/integer_lib.fd -------------------------------------------------------------------------------- /data/fd/intuition_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/intuition_lib.fd -------------------------------------------------------------------------------- /data/fd/keymap_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/keymap_lib.fd -------------------------------------------------------------------------------- /data/fd/label_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/label_lib.fd -------------------------------------------------------------------------------- /data/fd/layers_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/layers_lib.fd -------------------------------------------------------------------------------- /data/fd/layout_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/layout_lib.fd -------------------------------------------------------------------------------- /data/fd/listbrowser_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/listbrowser_lib.fd -------------------------------------------------------------------------------- /data/fd/locale_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/locale_lib.fd -------------------------------------------------------------------------------- /data/fd/lowlevel_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/lowlevel_lib.fd -------------------------------------------------------------------------------- /data/fd/mathffp_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/mathffp_lib.fd -------------------------------------------------------------------------------- /data/fd/mathieeedoubbas_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/mathieeedoubbas_lib.fd -------------------------------------------------------------------------------- /data/fd/mathieeedoubtrans_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/mathieeedoubtrans_lib.fd -------------------------------------------------------------------------------- /data/fd/mathieeesingbas_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/mathieeesingbas_lib.fd -------------------------------------------------------------------------------- /data/fd/mathieeesingtrans_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/mathieeesingtrans_lib.fd -------------------------------------------------------------------------------- /data/fd/mathtrans_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/mathtrans_lib.fd -------------------------------------------------------------------------------- /data/fd/misc_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/misc_lib.fd -------------------------------------------------------------------------------- /data/fd/nonvolatile_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/nonvolatile_lib.fd -------------------------------------------------------------------------------- /data/fd/palette_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/palette_lib.fd -------------------------------------------------------------------------------- /data/fd/penmap_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/penmap_lib.fd -------------------------------------------------------------------------------- /data/fd/popcycle_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/popcycle_lib.fd -------------------------------------------------------------------------------- /data/fd/potgo_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/potgo_lib.fd -------------------------------------------------------------------------------- /data/fd/radiobutton_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/radiobutton_lib.fd -------------------------------------------------------------------------------- /data/fd/ramdrive_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/ramdrive_lib.fd -------------------------------------------------------------------------------- /data/fd/realtime_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/realtime_lib.fd -------------------------------------------------------------------------------- /data/fd/requester_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/requester_lib.fd -------------------------------------------------------------------------------- /data/fd/resource_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/resource_lib.fd -------------------------------------------------------------------------------- /data/fd/rexxsyslib_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/rexxsyslib_lib.fd -------------------------------------------------------------------------------- /data/fd/scroller_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/scroller_lib.fd -------------------------------------------------------------------------------- /data/fd/slider_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/slider_lib.fd -------------------------------------------------------------------------------- /data/fd/space_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/space_lib.fd -------------------------------------------------------------------------------- /data/fd/speedbar_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/speedbar_lib.fd -------------------------------------------------------------------------------- /data/fd/string_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/string_lib.fd -------------------------------------------------------------------------------- /data/fd/texteditor_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/texteditor_lib.fd -------------------------------------------------------------------------------- /data/fd/timer_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/timer_lib.fd -------------------------------------------------------------------------------- /data/fd/translator_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/translator_lib.fd -------------------------------------------------------------------------------- /data/fd/utility_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/utility_lib.fd -------------------------------------------------------------------------------- /data/fd/virtual_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/virtual_lib.fd -------------------------------------------------------------------------------- /data/fd/wb_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/wb_lib.fd -------------------------------------------------------------------------------- /data/fd/window_lib.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/fd/window_lib.fd -------------------------------------------------------------------------------- /data/sfd/amigaguide_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/amigaguide_lib.sfd -------------------------------------------------------------------------------- /data/sfd/aml_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/aml_lib.sfd -------------------------------------------------------------------------------- /data/sfd/arexx_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/arexx_lib.sfd -------------------------------------------------------------------------------- /data/sfd/asl_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/asl_lib.sfd -------------------------------------------------------------------------------- /data/sfd/battclock_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/battclock_lib.sfd -------------------------------------------------------------------------------- /data/sfd/battmem_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/battmem_lib.sfd -------------------------------------------------------------------------------- /data/sfd/bevel_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/bevel_lib.sfd -------------------------------------------------------------------------------- /data/sfd/bitmap_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/bitmap_lib.sfd -------------------------------------------------------------------------------- /data/sfd/bullet_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/bullet_lib.sfd -------------------------------------------------------------------------------- /data/sfd/button_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/button_lib.sfd -------------------------------------------------------------------------------- /data/sfd/card_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/card_lib.sfd -------------------------------------------------------------------------------- /data/sfd/checkbox_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/checkbox_lib.sfd -------------------------------------------------------------------------------- /data/sfd/chooser_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/chooser_lib.sfd -------------------------------------------------------------------------------- /data/sfd/cia_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/cia_lib.sfd -------------------------------------------------------------------------------- /data/sfd/clicktab_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/clicktab_lib.sfd -------------------------------------------------------------------------------- /data/sfd/colorwheel_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/colorwheel_lib.sfd -------------------------------------------------------------------------------- /data/sfd/commodities_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/commodities_lib.sfd -------------------------------------------------------------------------------- /data/sfd/console_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/console_lib.sfd -------------------------------------------------------------------------------- /data/sfd/datatypes_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/datatypes_lib.sfd -------------------------------------------------------------------------------- /data/sfd/datebrowser_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/datebrowser_lib.sfd -------------------------------------------------------------------------------- /data/sfd/disk_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/disk_lib.sfd -------------------------------------------------------------------------------- /data/sfd/diskfont_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/diskfont_lib.sfd -------------------------------------------------------------------------------- /data/sfd/dos_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/dos_lib.sfd -------------------------------------------------------------------------------- /data/sfd/drawlist_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/drawlist_lib.sfd -------------------------------------------------------------------------------- /data/sfd/dtclass_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/dtclass_lib.sfd -------------------------------------------------------------------------------- /data/sfd/exec_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/exec_lib.sfd -------------------------------------------------------------------------------- /data/sfd/expansion_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/expansion_lib.sfd -------------------------------------------------------------------------------- /data/sfd/fuelgauge_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/fuelgauge_lib.sfd -------------------------------------------------------------------------------- /data/sfd/gadtools_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/gadtools_lib.sfd -------------------------------------------------------------------------------- /data/sfd/getfile_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/getfile_lib.sfd -------------------------------------------------------------------------------- /data/sfd/getfont_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/getfont_lib.sfd -------------------------------------------------------------------------------- /data/sfd/getscreenmode_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/getscreenmode_lib.sfd -------------------------------------------------------------------------------- /data/sfd/glyph_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/glyph_lib.sfd -------------------------------------------------------------------------------- /data/sfd/graphics_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/graphics_lib.sfd -------------------------------------------------------------------------------- /data/sfd/icon_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/icon_lib.sfd -------------------------------------------------------------------------------- /data/sfd/iffparse_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/iffparse_lib.sfd -------------------------------------------------------------------------------- /data/sfd/input_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/input_lib.sfd -------------------------------------------------------------------------------- /data/sfd/integer_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/integer_lib.sfd -------------------------------------------------------------------------------- /data/sfd/intuition_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/intuition_lib.sfd -------------------------------------------------------------------------------- /data/sfd/keymap_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/keymap_lib.sfd -------------------------------------------------------------------------------- /data/sfd/label_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/label_lib.sfd -------------------------------------------------------------------------------- /data/sfd/layers_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/layers_lib.sfd -------------------------------------------------------------------------------- /data/sfd/layout_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/layout_lib.sfd -------------------------------------------------------------------------------- /data/sfd/listbrowser_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/listbrowser_lib.sfd -------------------------------------------------------------------------------- /data/sfd/locale_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/locale_lib.sfd -------------------------------------------------------------------------------- /data/sfd/lowlevel_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/lowlevel_lib.sfd -------------------------------------------------------------------------------- /data/sfd/mathffp_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/mathffp_lib.sfd -------------------------------------------------------------------------------- /data/sfd/mathieeedoubbas_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/mathieeedoubbas_lib.sfd -------------------------------------------------------------------------------- /data/sfd/mathieeedoubtrans_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/mathieeedoubtrans_lib.sfd -------------------------------------------------------------------------------- /data/sfd/mathieeesingbas_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/mathieeesingbas_lib.sfd -------------------------------------------------------------------------------- /data/sfd/mathieeesingtrans_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/mathieeesingtrans_lib.sfd -------------------------------------------------------------------------------- /data/sfd/mathtrans_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/mathtrans_lib.sfd -------------------------------------------------------------------------------- /data/sfd/misc_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/misc_lib.sfd -------------------------------------------------------------------------------- /data/sfd/nonvolatile_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/nonvolatile_lib.sfd -------------------------------------------------------------------------------- /data/sfd/palette_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/palette_lib.sfd -------------------------------------------------------------------------------- /data/sfd/penmap_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/penmap_lib.sfd -------------------------------------------------------------------------------- /data/sfd/popcycle_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/popcycle_lib.sfd -------------------------------------------------------------------------------- /data/sfd/potgo_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/potgo_lib.sfd -------------------------------------------------------------------------------- /data/sfd/radiobutton_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/radiobutton_lib.sfd -------------------------------------------------------------------------------- /data/sfd/ramdrive_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/ramdrive_lib.sfd -------------------------------------------------------------------------------- /data/sfd/realtime_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/realtime_lib.sfd -------------------------------------------------------------------------------- /data/sfd/requester_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/requester_lib.sfd -------------------------------------------------------------------------------- /data/sfd/resource_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/resource_lib.sfd -------------------------------------------------------------------------------- /data/sfd/rexxsyslib_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/rexxsyslib_lib.sfd -------------------------------------------------------------------------------- /data/sfd/scroller_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/scroller_lib.sfd -------------------------------------------------------------------------------- /data/sfd/slider_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/slider_lib.sfd -------------------------------------------------------------------------------- /data/sfd/space_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/space_lib.sfd -------------------------------------------------------------------------------- /data/sfd/speedbar_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/speedbar_lib.sfd -------------------------------------------------------------------------------- /data/sfd/string_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/string_lib.sfd -------------------------------------------------------------------------------- /data/sfd/texteditor_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/texteditor_lib.sfd -------------------------------------------------------------------------------- /data/sfd/timer_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/timer_lib.sfd -------------------------------------------------------------------------------- /data/sfd/translator_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/translator_lib.sfd -------------------------------------------------------------------------------- /data/sfd/utility_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/utility_lib.sfd -------------------------------------------------------------------------------- /data/sfd/virtual_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/virtual_lib.sfd -------------------------------------------------------------------------------- /data/sfd/wb_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/wb_lib.sfd -------------------------------------------------------------------------------- /data/sfd/window_lib.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/data/sfd/window_lib.sfd -------------------------------------------------------------------------------- /extension.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/extension.properties -------------------------------------------------------------------------------- /ghidra_scripts/ApplyRegBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/ghidra_scripts/ApplyRegBase.java -------------------------------------------------------------------------------- /ghidra_scripts/CopperList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/ghidra_scripts/CopperList.java -------------------------------------------------------------------------------- /java-formatter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/java-formatter.xml -------------------------------------------------------------------------------- /src/main/java/amiga/AmigaHunkAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/amiga/AmigaHunkAnalyzer.java -------------------------------------------------------------------------------- /src/main/java/amiga/AmigaHunkLibFileSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/amiga/AmigaHunkLibFileSystem.java -------------------------------------------------------------------------------- /src/main/java/amiga/AmigaHunkLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/amiga/AmigaHunkLoader.java -------------------------------------------------------------------------------- /src/main/java/amiga/AmigaKickstartLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/amiga/AmigaKickstartLoader.java -------------------------------------------------------------------------------- /src/main/java/amiga/AmigaUssLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/amiga/AmigaUssLoader.java -------------------------------------------------------------------------------- /src/main/java/amiga/AmigaUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/amiga/AmigaUtils.java -------------------------------------------------------------------------------- /src/main/java/fd/FdFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/fd/FdFunction.java -------------------------------------------------------------------------------- /src/main/java/fd/FdFunctionsInLibs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/fd/FdFunctionsInLibs.java -------------------------------------------------------------------------------- /src/main/java/fd/FdLibFunctions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/fd/FdLibFunctions.java -------------------------------------------------------------------------------- /src/main/java/fd/FdParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/fd/FdParser.java -------------------------------------------------------------------------------- /src/main/java/hunk/BinFmtHunk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/BinFmtHunk.java -------------------------------------------------------------------------------- /src/main/java/hunk/BinImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/BinImage.java -------------------------------------------------------------------------------- /src/main/java/hunk/DebugInfo.java: -------------------------------------------------------------------------------- 1 | package hunk; 2 | 3 | abstract class DebugInfo { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/main/java/hunk/ExtType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/ExtType.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkBlockFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkBlockFile.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkBlockType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkBlockType.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkBreakBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkBreakBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkDebug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkDebug.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkDebugAny.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkDebugAny.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkDebugBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkDebugBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkDebugLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkDebugLine.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkEndBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkEndBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkExtBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkExtBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkHeaderBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkHeaderBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkIndexBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkIndexBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkIndexHunkEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkIndexHunkEntry.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkIndexSymbolDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkIndexSymbolDef.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkIndexSymbolRef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkIndexSymbolRef.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkIndexUnitEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkIndexUnitEntry.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkLibBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkLibBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkLoadSegFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkLoadSegFile.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkNameBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkNameBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkOverlayBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkOverlayBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkParseError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkParseError.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkRelocBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkRelocBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkRelocLongBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkRelocLongBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkRelocWordBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkRelocWordBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkSegment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkSegment.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkSegmentBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkSegmentBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkSymbolBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkSymbolBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkType.java -------------------------------------------------------------------------------- /src/main/java/hunk/HunkUnitBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/HunkUnitBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/IHunkBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/IHunkBlock.java -------------------------------------------------------------------------------- /src/main/java/hunk/Reloc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/Reloc.java -------------------------------------------------------------------------------- /src/main/java/hunk/RelocData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/RelocData.java -------------------------------------------------------------------------------- /src/main/java/hunk/Relocate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/Relocate.java -------------------------------------------------------------------------------- /src/main/java/hunk/Segment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/Segment.java -------------------------------------------------------------------------------- /src/main/java/hunk/SegmentType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/SegmentType.java -------------------------------------------------------------------------------- /src/main/java/hunk/Symbol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/Symbol.java -------------------------------------------------------------------------------- /src/main/java/hunk/SymbolData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/SymbolData.java -------------------------------------------------------------------------------- /src/main/java/hunk/XDefinition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/XDefinition.java -------------------------------------------------------------------------------- /src/main/java/hunk/XReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/XReference.java -------------------------------------------------------------------------------- /src/main/java/hunk/XReferenceType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/hunk/XReferenceType.java -------------------------------------------------------------------------------- /src/main/java/structs/CopperInst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/structs/CopperInst.java -------------------------------------------------------------------------------- /src/main/java/structs/CustomChipRegisters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/structs/CustomChipRegisters.java -------------------------------------------------------------------------------- /src/main/java/structs/InitData_Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/structs/InitData_Type.java -------------------------------------------------------------------------------- /src/main/java/structs/InitTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/structs/InitTable.java -------------------------------------------------------------------------------- /src/main/java/structs/M68KVectors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/structs/M68KVectors.java -------------------------------------------------------------------------------- /src/main/java/uss/UssFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/main/java/uss/UssFile.java -------------------------------------------------------------------------------- /src/test/java/fd/FdParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/test/java/fd/FdParserTest.java -------------------------------------------------------------------------------- /src/test/java/uss/UssTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/src/test/java/uss/UssTest.java -------------------------------------------------------------------------------- /test/uss/bobble-title.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/test/uss/bobble-title.uss -------------------------------------------------------------------------------- /test/uss/desertdream-dots.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/test/uss/desertdream-dots.uss -------------------------------------------------------------------------------- /test/uss/done endscreen.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/test/uss/done endscreen.uss -------------------------------------------------------------------------------- /test/uss/enigma ham fractal.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BartmanAbyss/ghidra-amiga/HEAD/test/uss/enigma ham fractal.uss --------------------------------------------------------------------------------