amiga-news DEUTSCHE VERSION
.
Links| Forums| Comments| Report news
.
Chat| Polls| Newsticker| Archive
.

Amiga events
01.-02.08.25 • Amiga/040 • Mountain View (USA)
11.-14.09.25 • Classic Computing 2025 • Hof (Germany)
17.-19.10.25 • Amiga40 • Mönchengladbach (Germany)
14.-16.11.25 • Flashback-Symposium #02 • Jößnitz (Germany)

28.Apr.2023



SMB2 handler smb2fs V53.5 for AmigaOS 3/4 and AROS
The Server Message Block (SMB) is a network protocol for file, print and other server services in computer networks and allows access to files and directories located on another computer (Wikipedia entry). Fredrik Wikstrom's SMB2 handler is based on libsmb2 and allows remote access to files via the SMB2/3 protocols (amiga-news.de reported). Changes of version 53.5:
  • Added a MUI password requester for the AROS port (based on code provided by Szilard Biro).
  • Reduced the minimum bsdsocket.library version from 4 to 3 in AmigaOS 3/AROS ports.
  • Merged error requester code from Szilard Biro.
  • Made smb2fs_init() call smb2_set_domain() if url->domain is not NULL.
Requirements: newlib.library V53.40 or later (or V53.30 as included in AmigaOS 4.1 FE) and the filesysbox.library V54.4 or later for AmigaOS 4, filesysbox.library 54.3 or later for AROS and AmigaOS 3 and optional the requester.class (ClassAct/ReAction, for password requester) for AmigaOS 3.

Downloads:

smb2fs.i386-aros.lha (81 KB)
smb2fs.m68k-amigaos.lha (149 KB)
smb2fs.ppc-amigaos.lha (127 KB)
(dr)

[News message: 28. Apr. 2023, 16:54] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
28.Apr.2023



Programming: Web based m68k assembler editor v2.7.0
Under the title link you can find a webapp to write, run and learn M68K assembly code based on the framework SvelteKit and the programming language Rust (amiga-news.de reported).

Since our last news item, the developer has provided the following changes:

Changed interactive documentation
  • Added side menu to interactive documentation
  • Improved transitions between pages
Bug fixes and more diffings
  • Added status code diffing
  • Fixed bugs in interactive documentation
(dr)

[News message: 28. Apr. 2023, 09:02] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
28.Apr.2023
reddit


Image converter: "DaDither" for Windows
"DaDither" was designed to convert images to formats of various retro platforms, including Amiga. The program allows you to convert graphics for OCS/ECS/AGA, including EHB and HAM modes. Support for PCHG mode is not yet implemented, but is under development. (dr)

[News message: 28. Apr. 2023, 06:32] [Comments: 1 - 28. Apr. 2023, 06:36]
[Send via e-mail]  [Print version]  [ASCII version]
27.Apr.2023
Andreas Magerl (ANF)


Print magazine: Issue 138 of Amiga Future readable online
The German and English issue 138 (May/June 2019) of the print magazine "Amiga Future" can now be read on the magazine's website in the form of image files of the individual pages. Remaining copies of the magazine as well as a higher resolution PDF version can be purchased from the publisher. (snx)

[News message: 27. Apr. 2023, 20:22] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
27.Apr.2023
Frank (ANF)


Puzzle game: Connect v1.3
In the puzzle game "Connect" (screenshots), you have to connect a series of ICs in such a way that each chip receives exactly the number of connections printed on its package. Developer Frank Röger has written about the now released version 1.3:

"Hello Amiga News! 4 weeks ago Virtual Dimension played "Connect" on their channel (YouTube video, German) and came to a positive result. Nevertheless, our sharp eye discovered two inconsistencies which we have fixed with this new version:

1. Resetting the game field
Yes, we have been asked a few times in the past how to reset the playing field. We can now answer this question as follows:

For player 1 this would be the Q key, for player 2 the P key.

2. Locking the joystick button in the result screen in BattleMode
Two players want to play against each other and have selected the mode that one player gets a point if he solved the game field first. The moment player A clicks on Verify and the check is positive, the result screen is immediately displayed.
In our opinion, however, it is unfortunate if player B does not notice this and presses the fire button himself just at the moment when "Solved" is displayed for player A. This causes the fire button to be pressed. This makes the fire button event count as if the result screen is to be closed. This happens especially when things are very hectic. We have solved this problem by displaying the result screen for at least 1 second before a player input is registered.

The update is available for buyers at the title link.

We hope you have fun playing!

Frank" (dr)

[News message: 27. Apr. 2023, 05:59] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
27.Apr.2023
TheoTheoderich


Developer diary: "Settle the World" 04/23
Christian 'TheoTheoderich' Wiegel continues to work on his turn-based building and trading game "Settle the World" (amiga-news.de reported). His latest developer diary entry is about the implementation of the wish expressed by players to be able to send units directly to a specific city:

However, the integration of this function turned out to be much more difficult than expected!

If you want to send a unit to a certain city, this means that there must be a list of the cities that can be reached. But how is this list created? Pathfinding to all of your own cities is impossible, as it would take far too long on the Amiga. I then asked myself how this function works in the games "Colonization" and "Civilization"?

I found out that the different land areas on the map are marked as "continents" (screenshot 1). All contiguous land areas are one continent each. Since land units cannot easily move over water, only cities that are on the same continent as the selected unit can be targets.

Unfortunately, I could not find out how the continents were determined in these old games. Therefore I found my own solution. In AmiBlitz 3 there is a function called "Flood-Fill". This function colours all contiguous areas of one colour. When creating the map in "Settle the World", each land square now gets a continent start value. Then all the squares on the map are scanned. If the square still has the continent start value, the function "Flood-Fill" is applied to this square and colours all squares on this continent in a one random colour. The colour number is then the new continent value. This is done until no square has the start continent value and every land square is assigned to a continent (screenshot 2). This process is repeated again for ocean fields (screenshot 3).


In order to obtain a list of the cities that can be reached in the game, all the player's cities must be scanned in a loop and it must be checked whether these cities are on the same continent as the selected unit. In addition, the distance to the cities is determined by a simple distance check ("as the crow flies"). Cities that are outside the pathfinding range are not listed (screenshot 4).

If the player now selects one of the listed cities as a target, the pathfinding of the unit starts in order to determine a way to this city. If the selected unit is inside a city, it is automatically moved out of the city. This new functionality is very usefull in mid- and late-game to reduce micromanagement.


(dr)

[News message: 27. Apr. 2023, 05:53] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
26.Apr.2023
Forum64 (ANF)


AGA successor: Document about the Advanced Amiga Architecture published
At the title link Dave Haynie has published this month the sixth draft of a Commodore-internal compilation of the development status of the never-finished AAA chipset, which dates from June 18, 1992. The PDF file comprises 314 pages. (snx)

[News message: 26. Apr. 2023, 14:02] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
26.Apr.2023
Mingo (Twitter)


Emulator: Denise V2.0 with Amiga support
Denise is a cycle accurate and platform independant emulator which, with the now released version 2.0, can now emulate an Amiga 500 and Amiga 1000 (Kickstart disks are required) in addition to a C64. Features already known from the C64 emulation, such as runAhead, savestates, drive sounds, PAL encoding, dynamic rate control, G-Sync/FreeSync, Warp, just in time polling are also available for the Amiga. Amiga related changes:
  • add Amiga emulation of A1000 (OSC/ICS), A500 (Full OCS), A500 (ECS Agnus, OCS Denise)
  • RGB or S-Video with PAL/NTSC color encoding, border cropping
  • support all global features like: runAhead, savestates, G-Sync, configs, Warp, JIT polling, shader
  • up to 4 disk drives with acceleration option
  • Chipram, Slowram, Fastram
  • list disk content in UI
  • AROS firmware is preinstalled
  • motor controlled auto warp
  • drive sounds
  • support custom frequencies like B.C. Kid (56.4 Hz)
  • if you only want to use one of the two emulators, Amiga or C64 core can be hidden
Denise is available cross platform for Windows 32/64 XP and higher, macOS (from version 10.9 on, Intel and Arm), Linux and BSD. (dr)

[News message: 26. Apr. 2023, 08:46] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
26.Apr.2023



Illustrated book: "Demoscene - The Logo Art" can be preordered
At the beginning of April, for the Illustrated book "Demoscene: the Logo Art" a crowdfunding campaign was started (amiga-news.de reported), which was successfully finished the day before yesterday. In A4 format, demoscene logos from more than three decades on around 400 colour pages are presented and background information on the corresponding pixel artists or scene groups are provided. On Editions64K now the book can be preordered for 40 Euro (plus shipping). The delivery will start from 25 Dezember. (dr)

[News message: 26. Apr. 2023, 08:14] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
26.Apr.2023
Passione Amiga (ANF)


Italian print and PDF magazine: Passione Amiga, issue 13
The twelfth issue of the Italian magazine "Passione Amiga", which is available as usual with 48 color pages both as a booklet and as a PDF, deals with the following topics:
  • Video Games: Boxx 4, Rick Dangerous Enhanced Version, Xevious 1200, Hop to the Top, Tenebra, AmiSnakes, JBoulder, Geo's Quest 2 In Search of Queen Lorraine
  • Review: Boing!
  • Reportage Passione Amiga spring 2023 edition
  • Article: We are all collectors
  • AmigaOS 3.2.2
  • Blender course, part 5
  • The wit of the Amiga community
  • Interview with Newel
  • And also: Games news, Tech news, Tricks and Solutions, Demo Scene, New Talents, Readers Mail
(dr)

[News message: 26. Apr. 2023, 05:49] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
26.Apr.2023
Seiya (ANF)


PDF magazine: REV'n'GE 145 (Italian/English)
Besides the Italian original issue, the PDF magazine REV'n'GE ("Retro Emulator Vision and Game") is also available in English. The magazine's reviews compare, if available, the different ports of classic games to the various platforms of their time. Furthermore a focus is on rather unknown retro games.

Amiga-related, the current issue is about Woof und GI Memory Game. (dr)

[News message: 26. Apr. 2023, 05:44] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
26.Apr.2023



Video: AmiTube and AmiFox running under AmigaOS 3.9
Dave 'Skateman' Koelman, who among other things wrote the article Using two graphics cards in the AmigaOne X5000, shows in a short video how he uses AmiTube and AmiFox on his Vampire Standalone under AmigaOS 3.9. (dr)

[News message: 26. Apr. 2023, 05:33] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
25.Apr.2023



Amiga emulator for MacOS: vAmiga V2.4
Dirk Hoffmann has released version 2.4 of his Amiga emulator vAmiga for MacOS. Changes:

Enhancements:
  • Improved audio filter emulation
  • Added support for ADFs containing less than 80 cylinders
  • Added some more ROM fingerprints
Bug fixes:
  • Fixed a crash that occurred when loading certain extended ADFs
The minimum system requirement for his emulator has been raised to macOS 11.0. Since the developer has left the "Apple Developer Program" ("too expensive"), the app is no longer certified. This means that from now on a warning will be displayed when the app is started. (dr)

[News message: 25. Apr. 2023, 19:01] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
25.Apr.2023



Portable assembler: vasm V1.9d
Frank Wille's 'vasm' is a portable, open-source assembler for which the author offers ready-made binaries for AmigaOS 2/3/4, MorphOS, TOS, MiNT and Windows. Changes in version 1.9d:
  • m68k: Using MOVEQ.L instead of MOVEQ must only disable the warning for values between 128 and 255, but not allow any value without error.
  • mot-syntax: XREF allows no definition and XDEF requires a definition.
  • std-syntax: Fixed potential problem with "scratch at end of line" warnings after a section attribute string.
  • oldstyle-syntax: Fixed potential problem with "scratch at end of line" warnings after a section attribute string.
  • tos-output: Reloc-output in executables was broken since V1.9b! Restrict to 32-bit absolute relocations again.
(dr)

[News message: 25. Apr. 2023, 05:22] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
24.Apr.2023
Jens Schönfeld (Twitter)


Individual Computers: Pre-order of keyboard/joystick adapter Keyrah V3
Keyrah V3 is the revised version of our popular Keyrah interface (amiga-news.de reported). Keyrah V3 allows you to connect the keyboards of classic computer systems like the Commodore 64 or the Amiga 1200 to modern computers (e.g. PC, Mac, or the Raspberry Pi) via USB. Now you can pre-order the adapter for 47.77 euros, which will be available from 27 April. Supported systems with this model are:
  • Commodore C64 (all models)
  • Commodore SX-64
  • Commodore VIC-20 (VC20)
  • Commodore C16
  • Commodore C128D
  • Amiga 1200
  • Amiga 600
  • Amiga 500
  • Amiga 4000/CDTV
  • Atari ST (8-pin connector only)
  • PC XT / PC AT (PS/2)
The following systems can be made compatible by mounting additional connectors on the circuit board or using adapters:
  • Commodore C128
  • Commodore C116
  • Commodore plus/4
  • Commodore PET (8296)
  • Commodore CBM2 (B-Series)
  • Amiga 2000/3000 (with PS2 adapter)
Keyrah V3's switch allows you to switch between the standard and a keymap that's geared towards emulation. This switch looks and feels like the original power switch of the Commodore 64, adding a third switch position that allows you to send an ACPI signal to shut down/power up your computer. To avoid triggering the shutdown procedure by accident, this third position is not locked, so the switch will always flip back from it if not held in place. For further safety, the ACPI signal is only sent to the computer after being held in this position for five seconds. (dr)

[News message: 24. Apr. 2023, 21:17] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
24.Apr.2023



Tank Mouse remake: Shop opened / Driver update (update)
The Polish designer Lukas Remis had successfully finished a Kickstarter campaign for the re-release of the wireless Commodore Mouse 1352 (amiga-news.de reported). Now the free sale of the mouse in black or beige for 46 Euros or the USB-to-DB9 adapter for 25 Euros plus shipping (in Europe approx. 8 Euros) has started under the title link.

Users had reported in various forums that there were problems with the touch scrolling function. In a status update only available to supporters, the developer acknowledges these problems: "As some of you might know, Cocolino driver which is needed for scrolling function, is causing some errors and interfering with MUI on classic Amiga OS. Unfortunately we've dicovered that too late. The driver is closed-source so we can't make changes to it, and I'm not a programmer myself."

Remis offered a prize of 500 euros and a set of beige and black tank mice with DB9 adapters for the first person to develop a new open source driver for Amiga Workbench. This has apparently already been done according to the latest update and the driver should be uploaded to Aminet soon.

Update: (25.04.2023, 05:48, dr)

Version 0.2 of the touch-scrolling driver now is available on Aminet. (dr)

[News message: 24. Apr. 2023, 20:59] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
24.Apr.2023



Linux: Kernel 6.3 for AmigaOne X1000/X5000
Right after the release of the Linux kernel 6.3, Christian 'xeno74' Zigotzky has compiled it for AmigaOne X1000 and X5000 and offered the kernel for download in the associated discussion topic of the Hyperion forum. X5000users should note that, if uInitrd is used for example for booting with a LABEL, then the dtb file should be loaded to the address 1d00000. The kernel has grown in recent months so the address 1c00000 is used by the uImage. (dr)

[News message: 24. Apr. 2023, 20:33] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
24.Apr.2023



Programming language: Amiga Blitz Basic 2 Visual Studio Code Ext. 0.9.1
In August last year we reported on the merging of Youen Chéné's fork of the Visual Studio Code Extension created by 'MickGyver', which adds support for Amiga Blitz Basic 2 (and Amiblitz), and the first joint release of version 0.7.0. Yesterday version 0.9.1 has been released providing fixes for Windows compatibility. (dr)

[News message: 24. Apr. 2023, 05:20] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023



Hyperion Entertainment released AmigaOS 3.2.2.1
Press release: Hyperion Entertainment is providing a Hotfix for the recently released AmigaOS 3.2.2.

Critical bugs were found soon after the AmigaOS 3.2.2 release which need to be addressed promptly. The Hotfix 3.2.2.1 comes as two separate and distinct installers.
  • The first features an updated installation archive, for those who have not yet installed the AmigaOS 3.2.2 update.This includes the changes from the hotfix, so you don't need to install it afterwards. Please follow the instructions as described at the enclosed "HowToInstall" text.
  • The second is a smaller installation archive, to be used with an existing AmigaOS 3.2.2 system. The hotfix adf should be used which can be found under the "ADFs/Hostfix" folder.
The following problems are addressed by this Hotfix:
  • Slowness of ReAction programs using page.gadget (part of the layout.gadget file)
  • GIF-datatype incorrectly refused to run on plain 68000 Amigas, e.g. Amiga 600
  • Rendering and undo issues in IconEdit, if used with CyberGraphX
  • Other small fixes in IconEdit and TextEdit
You can download Hotfix 3.2.2.1 for AmigaOS 3.2 here.

We wish to thank the users that quickly drew our attention to these issues. While we are aware of other reported problems, which have yet to be addressed, we still feel the need to release this Hotfix now. (dr)

[News message: 23. Apr. 2023, 13:38] [Comments: 2 - 17. Sep. 2023, 19:27]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023



Aminet uploads until 22.04.2023
The following files have been added until 22.04.2023 to Aminet:
IntyBASIC.lha            dev/cross  751K  MOS BASIC compiler for Intellivision
evo.lha                  dev/e      653K  68k E-VO: Amiga E Evolution
pcisata.lha              driver/med 13K   68k Mediator SATA Driver
P96Prefs.lha             driver/vid 78K   68k P96 Preferences Editor
RescueLander.lha         game/actio 46K   68k Land on Earth, Moon or Mars t...
MorPhONG.lha             game/misc  438K  MOS A remake of the famous Pong ;)
Klondike92.lha           game/think 55K   68k Klondike92 - solitaire card game
SPlay.lha                mus/play   14K   68k A quick 8SVX/ADPCM SamplePlayer
Multiscan_4color_pics... pix/back   961K      22 4 Colour WB Backdrops
SteMarRegMag2Theme.lha   util/dopus 645K      My Magellan II theme
IdentifyDev.lha          util/libs  66K   68k Identify hardware and more
IdentifyUsr.lha          util/libs  99K   68k Identify hardware and more
iGame.lha                util/misc  414K  68k Front-end for WHDLoad
VATestprogram.zip        util/misc  7.3M  68k Versatile Amiga Testprogram
InstallerLG.src.lha      util/sys   1.5M      Commodore Installer replacement
JoinGUI-AmigaOS3.lha     util/wb    1.3M  68k A GUI for Join command
JoinGUI-AmigaOS4.lha     util/wb    1.8M  OS4 A GUI for Join command
JoinGUI-AROS.lha         util/wb    1.5M  x86 A GUI for Join command
JoinGUI-MorphOS.lha      util/wb    1.5M  MOS A GUI for Join command
(snx)

[News message: 23. Apr. 2023, 08:22] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023



OS4Depot uploads until 22.04.2023
The following files have been added until 22.04.2023 to OS4Depot:
igame.lha                uti/mis 414kb 4.0 Front-end for WHDLoad
joingui.lha              uti/wor 2Mb   4.0 A GUI for Join command
(snx)

[News message: 23. Apr. 2023, 08:22] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023



AROS Archives uploads until 22.04.2023
The following files have been added until 22.04.2023 to AROS Archives:
tong.i386-aros.zip           gam/mis 32Mb  Tetris meets Pong = TONG!
icaros_v2.3_fix.zip          uti/mis 50Mb  Little fix for icaros v2.3
joingui-aros.zip             vid/mis 1Mb   A GUI for Join command
(snx)

[News message: 23. Apr. 2023, 08:22] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023



MorphOS-Storage uploads until 22.04.2023
The following files have been added until 22.04.2023 to MorphOS-Storage:
IntyBASIC_1.4.2.lha       Development/Cross         BASIC compiler for Inte...
Iris_1.13.lha             Email                     New email client suppor...
AmiArcadia_29.38.lha      Emulation                 A Signetics-based machi...
Nanosaur_1.4.4.lha        Games/Action              This is Pangea Software...
iGame_2.3.2.lha           Games/Launcher            A frontend to launching...
HollywoodCompile_1.0.lha  GUI                       A GUI for Hollywood com...
FICE-GUI_1.0.lha          GUI                       FICE-GUI_1.0.lha
GetMoreLibs.lha           System/Library/Misc       Executable allowing to ...
(snx)

[News message: 23. Apr. 2023, 08:22] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023



WHDLoad: New installers until 22.04.2023
Using WHDLoad, games, scene demos and intros by cracking groups, which were originally designed to run only from floppy disks, can be installed on harddisk. The following installers have been added until 22.04.2023:
  • 2023-04-21 improved: MoonBase: Lunar Colony Simulator (Wesson) supports unofficial french version, slave 512k only provided (Info)
  • 2023-04-21 fixed: Bug Bomber (Kingsoft) keyboard handler and interrupts fixed, some empty dbf loops patched, install script updated (Info)
(snx)

[News message: 23. Apr. 2023, 08:22] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023
Amiga Future (website)


AmigaRemix: Further files added
AmigaRemix collects remixes of well-known soundtracks of Amiga games. Since our last news-item, the following mp3 files have been added:
  • Turrican 2 - Final Challenge
  • Superfrog - Ancient level (Ode to Hathor remix)
  • Bundesliga Manager Professional (corpsicle remix)
  • Guitar Stardust Space Debris Slinger Medley
(snx)

[News message: 23. Apr. 2023, 08:22] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023
Gunnar 'gunaTM' Bernhardt (ANF)


WinUAE: Update of WinUAE_german.dll
Philipp Lonke has updated the library with German translations for version 4.10.1 of the Amiga emulator WinUAE, WinUAE_german.dll. (snx)

[News message: 23. Apr. 2023, 08:22] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023



Video: Reproduction of "Four-Byte Burger" artwork
On his YouTube channel "Ahoy", Stuart Brown produces documentary-style video content about video games and their influence on culture. His latest video is dedicated to the "Four-Byte Burger", an example from the early days of digital art. The image shows a colourful cheeseburger designed by Commodore's art director Jack Haeger. The original file was not saved and the image is only preserved as a copy because Haeger took photos of the monitor with a 35mm camera. In his video, Brown explores the question of whether a perfect reproduction of the image is possible. (dr)

[News message: 23. Apr. 2023, 06:55] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
23.Apr.2023
diagrom.com


Diagnosis tool: DiagROM 1.3, Announcement of version 2.0
DiagROM is a diagnosis software which has to be burned into an EPROM and then replaces the regular Kickstart-ROM of an Amiga (amiga-news.de reported). The tool does not require any driver, IRQs or something like that and therefore should also run on only partly working computers performing hardware tests and identifying problems.

The source test of DiagROM is on Github, whereby the author John 'Chucky' Hertell points out that it is not permitted to create one's own version. The source code has been released for archival purposes only.

DiagROM in its current form will end with this V1.3 and will only contain bug fixes (the date will only change). As Hertell explains in a detailed blog entry, he has started development of version 2.0, which will be written using Visual Studio code and cross-compiled with vasm and vbcc. It will be divided into modules and the code will support 68k assembler and C++.

Changes since version 1.2.1:
  • 2023-04-21: Well decided to release 1.3 far too many people are still using 1.2.1 so this is now the releaseversion. Read the text "FuturePlans.txt" for more info. three might be updates. as V1.3 please check the date. but it will be bugfixes only.
  • 2023-01-26: Now default also produces a CD32 image to be burned on 27C800 Proms. Fixed issue with ghostfastmem found on AA3000+ boards (detectes fastmem that isn't there)
  • 2022-11-11: Fixed Addresserrorissue while playing testmodule on 68000 machines. Fixed issue with Autoconfig printing forever (actually 65535 times) if there was no cards detected.
  • 2022-10-30: On RGB test. added white bars at every colorchange to make it more easy to count out what color is shown. RTC test: added a adjustfunction telling how many frames between everytime RTC changes (second) to help adjusting RTC. Added function to constantly monitor one memaddress. This is for dev of new hardware and not to diagnose issues.
  • 2022-02-21: Fixed addresserror crash on audiotest using 68000/010 CPU
  • 2022-02-19: Changed memorytestroutines to the new updated. Fixed autoconfig so it would not end in a endless loop if no autoconfigcards was detected. Fixed autoconfig with outside check-in from github to handle boards with an illegal configuration better. Simple Audio waveformtest now supports volumechanges and also HOPEFULLY oddbyte-bug in Sinuswaves are fixed Some minor undocumented bugfixes.
  • 2021-06-12: Now the new memtestroutine actually seems to work "x" is just hardcoded testareas, but the manual option "7" now lets you select what area to test and the depth of check (how many longwords between all tests 1 being every byte checked) (higher=faster test)
  • 2021-05-15: AGAIN Long pause.. ERASED the memtestroutine I was working on redid it TOTALLY!. available as "x" in memtest menu!
  • 2020-11-21: New Memtestroutine now should handle when colliding with workareas. Manualtest routine now swapped to the new testroutine. you can now enter selected area to scan AND change blocksize. higher blocksize=more accurate addresstest check. also if you enter wrong order of area to scan it will be handled. 0 byte scanarea will cancel.
  • 2020-10-29: New experimental memtestroutine in the works. right now only doing a test of HARDCODED 16MB fastmem on A4k/3k Should be much faster, ASWELL as it should handle address-error issues! TEST IT HARD PLEASE! Also contains bug in Zorro handling asking boards to be shut down, issued via Github! (thanx!!)
  • 2020-10-18 Noticed that CSPPC did not work on DiagROM. This as it seems the board needs time to startup (HEY P5.. handle it with RST??) so doing some waiting and resetmagic if a CSPPC is detected. not it starts OFTEN! (not always, if not. do a reset and it will start)
  • 2020-10-02: Fixed bug so if no chipmem available at boot, it doesnt try to do a addresserrortest of that area anyway. Fixed scrollbug leaving traces of lowest pixelrow. Added function in Autoconfig mode that lists a summary of detected boards. Added About text. Added support for handling 2 different workmem areas: Chipmem and Fastmem, showing info about it in systeminfo screen. Systeminfo screen if detecting a 060 will show PCR registerbits. If A3000/A4000 motherboard memory or CPU slot memory is found scanning of A1200 CPU Slot memory is disabled, This will hopefully stop machine to crash with a 3640 installed and maprom enabled.
  • 2020-09-05: Found a interesting behaviour on Amiga 4000. If you have no chipmem, and write something to any chipmemaddress and then read anything from any chipmemadress (not even same as you wrote to) THAT value will be read! so on an A4000 with no chip. the memorydetectroutine would say that it finds a shadowram. also the UDS/LDS test said "ok" even it it impossible could be. so fixed that by doing a write to chipmem with $ffffffff so it will read that if you do not have any chipmem. making the tests more true. A1k Version have not been working for a while due to spaceissues. removed more or less all "not important" tests tomake it fit into the very limited 64k bootrom. so it should work again. Fixed bugs when using a 68000 CPU (010 aswell?) that crashed IRQ/CIA tests and also Extended chipmemtest. (Addresserror etc) Also fixed more information in crashscreen.
  • 2020-08-23: During Startup, UDS/LDS test was done by writing $ff to diferent places, this could be wrong as no memory can also show up as $ff changed value to $aa to be more "random" if memory is not present. At startup, chipmem is filled with its memoryaddress, while doing this you see a checkered-pattern on screen. After that, it verifies that the address contains that data, while doing this you see a distorded colorpattern on screen. if fail, it will show what memaddress it fails at, memaddress as binary and also what it actually contained (should be its same address) So no more telling ram is ok when thee was shorted/missing addresslines. Now check actually checks ALL memory and not only beginning.
  • 2020-08-16: Doing Addresserrorchecks on Chipmem AND workarea.. if left mousebutton pressed at poweron. fastmem is chosen ar priority ram, if no fastmem found, chipmem will be used but screen turned off. if addresserror found in chipmem, chipmem will be discarded. will be handled different later
  • 2020-08-01: New initcode in start. at memfail bits read will be written as green is correct, red if failed. Also during error, a dividertext will be printed every 512k block. At startup, romadresserrors is checked.
(dr)

[News message: 23. Apr. 2023, 06:55] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
22.Apr.2023



RTG driver: Preferences editor "P96Prefs" 47.7.1 for P96
With "P96Prefs" Thomas Richter has written an improved, alternative preferences editor for the RTG driver P96 (amiga-news.de reported), which he has now officially published on Aminet. P96 V3.0.0 or higher and AmigaOS 3.2 or higher are required. (dr)

[News message: 22. Apr. 2023, 09:41] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
22.Apr.2023



Print-/PDF magazine: Amiga Addict, issue 20
The 20th issue of the British magazine "Amiga Addict" is now available, among other things, as a digital version for about 5.60 euros. The printed version including shipping (worldwide) costs about 12.30 euros. The current issue contains the following topics:
  • Amiga Addict explores Andy Warhol's relationship with creating art on the Amiga and how he helped forge our platform's creative identity. PLUS: An exclusive interview with Amiga World magazine's co-founder and editor Guy Wright, who interviewed Warhol back in 1986 prior to the iconic artist's passing.
  • We head out on the road, turning our focus to Amiga users and reporting from Lincolnshire Amiga Group, Stamford Peterborough Amiga Group and Yorkshire Amiga Group meets.
  • The Amiga Walker prototype - the last AGA Amiga computer never to be released.
  • Rob Smith's new Retro Directory, a free online listing service.
  • We speak to David Upchurch, the renowned ex-editor of The One Amiga magazine.
  • Original Amiga hardware engineer Ron Nicholson gives us the low-down on what makes our favourite machine tick.
  • A brand new gamepad controller for the Amiga: Ralph Egas brings word of his Dual Stick.
  • Latest game review: Maria Renard's Revenge.
  • To celebrate both Easter and Amiga Addict's 20th issue, our Gold Standard column reveals the best Easter Eggs and bonuses hidden in classic Amiga games.
  • A round-up of the AGA games everyone really should have played!
  • Six Of The Best: classic games picked out by Acidbottle (Wonderboy).
  • A guide to Bifrost Heimdall Edition, the ultimate LED lighting mod for the Amiga.
  • Magazine, manual and reference book scanning. We look at the best way to digitally preserve your Amiga-related print media with the CZUR ET16 Plus overhead scanner.
  • Our regulars including former-Sensible Software's Stoo Cambridge, Demoscene, Amiga news, User Groups, Classic Coverdisk Of The Month and readers letters.
  • Plus lots lots more..!
(dr)

[News message: 22. Apr. 2023, 07:10] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
22.Apr.2023



Developer diary: "X-Rotator" effect in Amiga demos
'Slummy' is a member of the Norwegian Amiga demo group Spaceballs. At this year's Revision Demo Party, which took place over the Easter weekend, the group won second place with Candiru in the category "Oldschool Intro" (YouTube-Video). In a developer diary entry, 'Slummy' now explains the "X-Rotator"-based effect used in it. (dr)

[News message: 22. Apr. 2023, 06:01] [Comments: 0]
[Send via e-mail]  [Print version]  [ASCII version]
1 53 100 ... <- 105 106 107 108 109 110 111 112 113 114 115 -> ... 120 617 1119 [Archive]
 
 Recent Discussions
.
Amiga 4000(T)ower for sale
Calvin Harris - Amiga A1200
Amiga basic rewritten for Apple
Volker Wertich interview
Commodore Amiga MYSTYLE
.
 Latest Top-News
.
Group of investors represented by Youtuber Perifractic buys Commodore (28. Jun.)
AmiKit In A Box: Raspberry Pi 5 with Workbench distribution (25. Jun.)
MorphOS: Web browser Wayfarer 10.0 (16. Jun.)
MorphOS: Software collection Chrysalis 3.19 (15. Jun.)
Legal dispute: Hyperion can be held liable for copyright infringements (13. Jun.)
Youtuber claims to have received an offer to buy the Commodore brand (08. Jun.)
Programming competition: AmiGameJam 2025 started (05. Jun.)
Martin Ulrich, co-developer of Ports of Call, has passed away (03. Jun.)
Print/PDF magazine: BrewOtaku, #6 (29. May.)
Module-player: NostalgicPlayer 3.0.0 for Windows (27. May.)
.
 amiga-news.de
.
Configure main page

 
 
.
Masthead | Privacy policy | Netiquette | Advertising | Contact
Copyright © 1998-2025 by amiga-news.de - all rights reserved.
.