AminetAminet
Search:
84450 packages online
About
Recent
Browse
Search
Upload
Setup
Services

misc/emu/hatari-1.5.lha

Mirror:Random
Showing:m68k-amigaosppc-amigaosppc-morphosi386-arosi386-amithlonppc-warpupppc-powerupgeneric
No screenshot available
Short:AtariST emulator
Author:Hatari team
Uploader:mmartinka volny cz (Miloslav Martinka)
Type:misc/emu
Version:1.5.0
Architecture:i386-aros
Date:2011-09-12
Download:http://aminet.net/misc/emu/hatari-1.5.lha - View contents
Readme:http://aminet.net/misc/emu/hatari-1.5.readme
Downloads:1001

Hatari is compiled with new the SDL library. 
And is compiled with the new cpu options. 

Tip:
If you have a keyboard without the key Alt Gr, you can set the individual keys
for menu in hatari.cfg.

hatari.cfg
[ShortcutsWithoutModifiers]
keyOptions = 278                   -- HOME key
keyFullScreen = 287                -- END key
keyMouseMode = 0
keyColdReset = 0
keyWarmReset = 0
.... etc.

---------------------------------------------------------------

In this version still doesn't work key F11 and F12.

---------------------------------------------------------------
          Compiling for AROS, Miloslav Martinka.
---------------------------------------------------------------


Version 1.5.0 (2011-07-19):
 -------------------

Emulation:
- Alternative CPU core based on WinUAE for more accurate future
  HW interaction emulation (see readme.txt on how to enable it)
- Use precise clocks values (as described in Atari's official schematics)
  for better video/dma audio synchronisation (e.g. More Or Less Zero by DHS)
- DSP:
  - Some DSP-timing sensitive Falcon demos that by luck happened to work
    with Hatari v1.4, don't work anymore in v1.5 with the default UAE CPU
    core.  This is because while DSP cycle accuracy has been improved,
    the default UAE CPU core isn't fully cycle accurate.  The experimental
    WinUAE core is needed to run them
  - Undocumented 2 bit shift special case for DSP SSI <-> crossbar exchanges
    in hanshake mode with 32 Mhz clock (fixes DSP MP2 player used in many
    demos & programs, but that requires also using WinUAE core)
- Sound improvements:
  - Major rewrite and accuracy improvements in STE DMA sound, including
    emulation of the 8 bytes FIFO, giving results nearly identical to
    a real STE (e.g. HexTracker by Paulo Simoes)
  - Improved precision in sound emulation, with nearly no rounding errors
    over successive VBL (correct sound latency on US TOS running at 60 Hz)
  - By default mix 3 YM voices using a lookup table of values
    measured on real STF to improve digisound (e.g. Flashback demo sound)
  - Remove old ST Sound's code used for tone and noise step compute
    (some low period values were not correctly emulated)
- Video emulation on STF/STE:
  - On STE, correctly shift display 8 pixels to the left when using
    224 bytes overscan
  - Add support for spec512 mode in med res (fixes 'Best Part Of The
    Creation' in 'Punish Your Machine', 'HighRes Mode' demo by Paradox)
  - Correctly shift the screen 4 pixels to the left when left border is removed
    in med res overscan (Hatari 1.4 handled only low res, fixes 'No Cooper'
    by 1984, 'Best Part Of The Creation' by Delta Force)
  - Precisely emulate the number of frames per sec (eg 50.053 fps in PAL
    instead of the usual 50 Hz)

Emulator:
- Atari program given as argument to Hatari will be automatically
  started after TOS boots. GEMDOS hard disk directory can now be
  give also as an argument, not just as a (-d) option
- TOS4 or --machine falcon option use enables DSP emulation now
  (follow them with --dsp none to disable DSP emulation)
- Memory state saving and restoring fixes, especially for Falcon
  - Crossbar state is included -> state file ABI break
- AVI recording options can be set in the new [Video] config file section
- AVI recording supports non integer frame rates.
- Falcon/TT Videl/hostscreen improvements:
  - New setting/option for using Desktop resolution & scaling
    in fullscreen instead of changing the resolution. On by default
  - User's desktop size is used as max limit for Videl zooming.
    Requires SDL >= 1.2.10
  - Videl resolution change is done immediately, not 3 VBLs late
  - Fix issues in switching between same sized VDI & TT resolutions
- SDL GUI improvements:
  - DSP can be disabled from the GUI without needing to restart Hatari
  - Disk access LED and desktop-resolution options
  - AVI video length (mins:secs) is shown in titlebar during recording
  - Option for cropping statusbar from videos & screenshots
  - Fileselector scrollbar can be used with mouse
  - YM mixing method selection
- Debugging improvements:
  - New disassembler with more Motorola like syntax
  - CPU & DSP "disasm" and "memdump" commands accept register & symbol
    names in addition to numeric addresses / address ranges
  - Option to disable Falcon mic
    ("--mic off" is needed for Mudflap debugging)
  - "--run-vbls" can be set also at run-time
  - "--bios-intercept" can be toggled from debugger (not just enabled)
  - BIOS CON: output is converted to ASCII and redirected to host console
    with the --bios-intercept option
  - Support for tracing DSP, Videl and Crossbar
  - Support for tracing AES calls.  VDI calls can now be traced
    also without using an extended VDI resolution
  - BIOS/XBIOS/GEMDOS/VDI/AES/Line-A/Line-F opcode breakpoint support
  - TEXT, DATA and BSS variables for addresses of corresponding segments
    in currently loaded program
  - "aes", "vdi" and "gemdos" subcommands for "info".  Without arguments
    they will output information about corresponding OS part state,
    with (a non-zero) argument, opcode/call name table is shown.
    "video" subcommand for showing video related information.
    "cookiejar" subcommand for showing cookiejar contents.
  - "file" subcommand to "lock" that executes debugger commands from
    given file when debugger is entered (or ":lock" breakpoint is hit)
  - ":lock" option to breakpoints that will show (without stopping the
    emulation) the same output as what's shown on entering the debugger
  - ":file" option to breakpoints that executes the commands from
    given file when the breakpoint is hit. This can be used to chain
    debugger actions
  - multiple breakpoints options can be specified per breakpoint
  - parenthesis in "evaluate" command are used to indicate memory
    accesses (instead of operator precedence like earlier)
  - DSP and CPU code profiling functionality.  Provides statistics about
    profiled code (executed code address ranges, max and total counts
    and cycles), lists addresses/instructions taking most cyles and if
    symbols are loaded, what were the most used symbol addresses.
  - Profiling information is also shown in disassembly output

Other changes:
- hmsa tool can create empty disk images in addition to converting
  disks between ST & MSA formats
- Minimal hatari-tos-register.sh Linux init script (example)
  to register Hatari as binfmt_misc handler/runner for TOS programs
- hatari-console.py renamed to hconsole.py, documented and made extensible
  (hconsole is command line Python interface for Hatari remote API)
- Support for plain Makefiles removed (except for internal tests),
  only CMake is used for configuring and building Hatari
- CMake doesn't require anymore working C++, C-compiler is enough


Uploaded using: archives.aros-exec.org


Contents of misc/emu/hatari-1.5.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO METHOD CRC     STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
-rwx------ 65534/65534    7258    7494  96.9% -lh5- 0093 Dec  2  2010 hatari-1.5.0.info
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Sep  8 08:02 hatari-1.5.0/
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:48 hatari-1.5.0/doc/
-rwx------ 65534/65534     297     634  46.8% -lh5- cc06 Jul 18 16:32 hatari-1.5.0/doc/CMakeLists.txt
-rwx------ 65534/65534    2633    5666  46.5% -lh5- cecc Jul 18 16:32 hatari-1.5.0/doc/authors.txt
-rwx------ 65534/65534  209709  593636  35.3% -lh5- 8c67 Jul 18 16:48 hatari-1.5.0/doc/changelog.txt
-rwx------ 65534/65534     829    1691  49.0% -lh5- 4273 Jul 18 16:32 hatari-1.5.0/doc/coding.txt
-rwx------ 65534/65534   21233   92588  22.9% -lh5- 67a4 Jul 18 16:32 hatari-1.5.0/doc/compatibility.html
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/doc/doxygen/
-rwx------ 65534/65534    2081    8926  23.3% -lh5- 63e8 Jul 18 16:32 hatari-1.5.0/doc/doxygen/Doxyfile
-rwx------ 65534/65534    6959   15973  43.6% -lh5- 35c0 Jul 18 16:32 hatari-1.5.0/doc/emutos.txt
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/doc/fr/
-rwx------ 65534/65534     468     769  60.9% -lh5- feac Jul 18 16:32 hatari-1.5.0/doc/fr/clavier-exemple.txt
-rwx------ 65534/65534    3319    7608  43.6% -lh5- 4fa8 Jul 18 16:32 hatari-1.5.0/doc/fr/hatari.1
-rwx------ 65534/65534    5333   13104  40.7% -lh5- 9cad Jul 18 16:32 hatari-1.5.0/doc/hatari.1
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/doc/images/
-rwx------ 65534/65534    2733    2786  98.1% -lh5- e048 Jul 18 16:32 hatari-1.5.0/doc/images/devices.png
-rwx------ 65534/65534    3270    3295  99.2% -lh5- 297b Jul 18 16:32 hatari-1.5.0/doc/images/fileselector.png
-rwx------ 65534/65534    3807    3807 100.0% -lh0- 8039 Jul 18 16:32 hatari-1.5.0/doc/images/floppydisks.png
-rwx------ 65534/65534    2105    2146  98.1% -lh5- 4caf Jul 18 16:32 hatari-1.5.0/doc/images/harddisks.png
-rwx------ 65534/65534    2664    2664 100.0% -lh0- 6e70 Jul 18 16:32 hatari-1.5.0/doc/images/joystick.png
-rwx------ 65534/65534    1657    1657 100.0% -lh0- 1d6c Jul 18 16:32 hatari-1.5.0/doc/images/keyboard.png
-rwx------ 65534/65534    2179    2203  98.9% -lh5- 2ee8 Jul 18 16:32 hatari-1.5.0/doc/images/main.png
-rwx------ 65534/65534    2266    2266 100.0% -lh0- 0129 Jul 18 16:32 hatari-1.5.0/doc/images/memory.png
-rwx------ 65534/65534    1800    1800 100.0% -lh0- 9b34 Jul 18 16:32 hatari-1.5.0/doc/images/monitor.png
-rwx------ 65534/65534    1315    1315 100.0% -lh0- b533 Jul 18 16:32 hatari-1.5.0/doc/images/newfloppy.png
-rwx------ 65534/65534    2695    2732  98.6% -lh5- 04a3 Jul 18 16:32 hatari-1.5.0/doc/images/screen.png
-rwx------ 65534/65534    2600    2634  98.7% -lh5- 7b9f Jul 18 16:32 hatari-1.5.0/doc/images/sound.png
-rwx------ 65534/65534    2880    2886  99.8% -lh5- 9c8a Jul 18 16:32 hatari-1.5.0/doc/images/system.png
-rwx------ 65534/65534    2061    2138  96.4% -lh5- 43b4 Jul 18 16:32 hatari-1.5.0/doc/images/tos.png
-rwx------ 65534/65534     442     778  56.8% -lh5- 44e1 Jul 18 16:32 hatari-1.5.0/doc/keymap-sample.txt
-rwx------ 65534/65534   41381  143085  28.9% -lh5- f17d Jul 18 16:32 hatari-1.5.0/doc/manual.html
-rwx------ 65534/65534    2931    5818  50.4% -lh5- 325a Jul 18 16:32 hatari-1.5.0/doc/memory-usage.txt
-rwx------ 65534/65534    3201    8019  39.9% -lh5- a32d Jul 18 16:32 hatari-1.5.0/doc/midi-linux.txt
-rwx------ 65534/65534   12689   32123  39.5% -lh5- dc9e Jul 18 16:32 hatari-1.5.0/doc/release-notes.txt
-rwx------ 65534/65534    3574    7799  45.8% -lh5- e07b Jul 18 16:32 hatari-1.5.0/doc/todo.txt
-rwx------ 65534/65534    7007   17987  39.0% -lh5- 6294 Jul 18 16:32 hatari-1.5.0/gpl.txt
-rwx------ 65534/65534  993391 3386088  29.3% -lh5- 8a29 Sep  8 06:59 hatari-1.5.0/hatari
-rwx------ 65534/65534    1241    3849  32.2% -lh5- 522b Sep  8 07:37 hatari-1.5.0/hatari.cfg
-rwx------ 65534/65534    3727   17143  21.7% -lh5- 6780 Nov 24  2010 hatari-1.5.0/hatari.info
-rwx------ 65534/65534      27      50  54.0% -lh5- 5e28 Sep  8 07:55 hatari-1.5.0/hatari.nvram
-rwx------ 65534/65534    2957    6499  45.5% -lh5- 1959 Jul 18 16:32 hatari-1.5.0/readme.txt
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/tests/
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/tests/buserror/
-rwx------ 65534/65534     408     677  60.3% -lh5- ffd5 Jul 18 16:32 hatari-1.5.0/tests/buserror/buserr_b.prg
-rwx------ 65534/65534    1009    5764  17.5% -lh5- 6e26 Jul 18 16:32 hatari-1.5.0/tests/buserror/buserr_b.s
-rwx------ 65534/65534     408     677  60.3% -lh5- 61a9 Jul 18 16:32 hatari-1.5.0/tests/buserror/buserr_w.prg
-rwx------ 65534/65534    1013    5769  17.6% -lh5- 6633 Jul 18 16:32 hatari-1.5.0/tests/buserror/buserr_w.s
-rwx------ 65534/65534     343     637  53.8% -lh5- 9b34 Jul 18 16:32 hatari-1.5.0/tests/buserror/readme.txt
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/tests/buserror/results/
-rwx------ 65534/65534     203     440  46.1% -lh5- 302a Jul 18 16:32 hatari-1.5.0/tests/buserror/results/fal_c_b.txt
-rwx------ 65534/65534     189     383  49.3% -lh5- 848f Jul 18 16:32 hatari-1.5.0/tests/buserror/results/fal_c_w.txt
-rwx------ 65534/65534     200     474  42.2% -lh5- ef4f Jul 18 16:32 hatari-1.5.0/tests/buserror/results/fal_n_b.txt
-rwx------ 65534/65534     199     474  42.0% -lh5- f34f Jul 18 16:32 hatari-1.5.0/tests/buserror/results/fal_n_w.txt
-rwx------ 65534/65534     292     976  29.9% -lh5- d161 Jul 18 16:32 hatari-1.5.0/tests/buserror/results/st_b.txt
-rwx------ 65534/65534     122     197  61.9% -lh5- 6c48 Jul 18 16:32 hatari-1.5.0/tests/buserror/results/st_w.txt
-rwx------ 65534/65534     310     946  32.8% -lh5- dc93 Jul 18 16:32 hatari-1.5.0/tests/buserror/results/ste_b.txt
-rwx------ 65534/65534     163     319  51.1% -lh5- 6c13 Jul 18 16:32 hatari-1.5.0/tests/buserror/results/ste_w.txt
-rwx------ 65534/65534    1008    4314  23.4% -lh5- fd05 Jul 18 16:32 hatari-1.5.0/tests/buserror/results/tt_b.txt
-rwx------ 65534/65534     186     419  44.4% -lh5- 45d4 Jul 18 16:32 hatari-1.5.0/tests/buserror/results/tt_w.txt
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/tests/debugger/
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/tests/debugger/data/
-rwx------ 65534/65534      45      46  97.8% -lh5- 81fb Jul 18 16:32 hatari-1.5.0/tests/debugger/data/console.ini
-rwx------ 65534/65534     224     343  65.3% -lh5- 4ab2 Jul 18 16:32 hatari-1.5.0/tests/debugger/data/debugger.ini
-rwx------ 65534/65534     106     154  68.8% -lh5- 366d Jul 18 16:32 hatari-1.5.0/tests/debugger/data/dsp-test.sym
-rwx------ 65534/65534    9601   26192  36.7% -lh5- b27f Jul 18 16:32 hatari-1.5.0/tests/debugger/data/etos512.sym
-rwx------ 65534/65534     652    1358  48.0% -lh5- f836 Jul 18 16:32 hatari-1.5.0/tests/debugger/data/os-header.sym
-rwx------ 65534/65534      34      34 100.0% -lh0- 7d0b Jul 18 16:32 hatari-1.5.0/tests/debugger/data/test.ini
-rwx------ 65534/65534    1451    3271  44.4% -lh5- ec03 Jul 18 16:32 hatari-1.5.0/tests/debugger/makefile
-rwx------ 65534/65534    2255    6847  32.9% -lh5- 4b3e Jul 18 16:32 hatari-1.5.0/tests/debugger/test-breakcond.c
-rwx------ 65534/65534    1002    2354  42.6% -lh5- 535c Jul 18 16:32 hatari-1.5.0/tests/debugger/test-dummies.c
-rwx------ 65534/65534     926    2361  39.2% -lh5- 34cf Jul 18 16:32 hatari-1.5.0/tests/debugger/test-evaluate.c
-rwx------ 65534/65534     547    1132  48.3% -lh5- a43c Jul 18 16:32 hatari-1.5.0/tests/debugger/test-scripting.sh
-rwx------ 65534/65534     866    2562  33.8% -lh5- e0fe Jul 18 16:32 hatari-1.5.0/tests/debugger/test-symbols.c
-rwx------ 65534/65534     190     313  60.7% -lh5- 3ce7 Jul 18 16:32 hatari-1.5.0/tests/readme.txt
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/tools/
-rwx------ 65534/65534     346    1052  32.9% -lh5- 27b6 Jul 18 16:32 hatari-1.5.0/tools/CMakeLists.txt
-rwx------ 65534/65534     519     939  55.3% -lh5- 59f4 Jul 18 16:32 hatari-1.5.0/tools/ahcc-symbols-convert.sh
-rwx------ 65534/65534     866    1665  52.0% -lh5- 5304 Jul 18 16:32 hatari-1.5.0/tools/atari-hd-image.1
-rwx------ 65534/65534    2016    5328  37.8% -lh5- c6c4 Jul 18 16:32 hatari-1.5.0/tools/atari-hd-image.sh
-rwx------ 65534/65534     553    1167  47.4% -lh5- 3e22 Jul 18 16:32 hatari-1.5.0/tools/hatari-local-midi-ring.sh
-rwx------ 65534/65534     440    1009  43.6% -lh5- 5515 Jul 18 16:32 hatari-1.5.0/tools/hatari-local-rs232.sh
-rwx------ 65534/65534     545    1250  43.6% -lh5- bb34 Jul 18 16:32 hatari-1.5.0/tools/hatari-tos-register.sh
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Jul 18 16:32 hatari-1.5.0/tools/hconsole/
-rwx------ 65534/65534     279     662  42.1% -lh5- cb2e Jul 18 16:32 hatari-1.5.0/tools/hconsole/CMakeLists.txt
-rwx------ 65534/65534     620    1112  55.8% -lh5- 2409 Jul 18 16:32 hatari-1.5.0/tools/hconsole/example-commands
-rwx------ 65534/65534     415     710  58.5% -lh5- bd96 Jul 18 16:32 hatari-1.5.0/tools/hconsole/example-debugger
-rwx------ 65534/65534     636    1281  49.6% -lh5- aac5 Jul 18 16:32 hatari-1.5.0/tools/hconsole/example.py
-rwx------ 65534/65534    1223    2482  49.3% -lh5- 6490 Jul 18 16:32 hatari-1.5.0/tools/hconsole/hconsole.1
-rwx------ 65534/65534    4990   15618  32.0% -lh5- 186f Jul 18 16:32 hatari-1.5.0/tools/hconsole/hconsole.py
-rwx------ 65534/65534     331     663  49.9% -lh5- 688a Jul 18 16:32 hatari-1.5.0/tools/hconsole/release-notes.txt
drwx------ 65534/65534       0       0 ****** -lhd- 0000 Sep  8 07:55 hatari-1.5.0/tools/hmsa/
-rwx------ 65534/65534     386     890  43.4% -lh5- 36df Jul 18 16:32 hatari-1.5.0/tools/hmsa/CMakeLists.txt
-rwx------ 65534/65534    1212    2919  41.5% -lh5- 9d3d Jul 18 16:32 hatari-1.5.0/tools/hmsa/floppy.c
-rwx------ 65534/65534     288     439  65.6% -lh5- 9a5d Jul 18 16:32 hatari-1.5.0/tools/hmsa/floppy.h
-rwx------ 65534/65534   54401  106364  51.1% -lh5- 5ad3 Sep  8 06:56 hatari-1.5.0/tools/hmsa/hmsa
-rwx------ 65534/65534    1079    2018  53.5% -lh5- b059 Jul 18 16:32 hatari-1.5.0/tools/hmsa/hmsa.1
-rwx------ 65534/65534    1930    5400  35.7% -lh5- 4ee4 Jul 18 16:32 hatari-1.5.0/tools/hmsa/hmsa.c
-rwx------ 65534/65534     298     461  64.6% -lh5- f4a6 Jul 18 16:32 hatari-1.5.0/tools/hmsa/hmsa.h
-rwx------ 65534/65534     992    2077  47.8% -lh5- bef1 Jul 18 16:32 hatari-1.5.0/tools/hmsa/readme-hmsa.txt
-rwx------ 65534/65534     819    1489  55.0% -lh5- bbc0 Jul 18 16:32 hatari-1.5.0/tools/zip2st.1
-rwx------ 65534/65534    1252    2888  43.4% -lh5- 7ae2 Jul 18 16:32 hatari-1.5.0/tools/zip2st.sh
-rwx------ 65534/65534  173448  524288  33.1% -lh5- 35b8 Sep  4  2009 hatari-1.5.0/tos.img
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       103 files 1640555 5165260  31.8%            Sep 12 21:47

Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>