Search found 293 matches

by thomasrapp
Fri Dec 07, 2018 1:05 pm
Forum: SDK Support
Topic: SDK for AmigaOS3.1.4?
Replies: 2
Views: 4395

Re: SDK for AmigaOS3.1.4?

LiveForIt wrote:There are lots of functions marked as obsolete for AmigaOS4.1, and I guess that’s also true for AmigaOS3.1.4.
AFAIK dos.library has not been touched in 3.1.4, so no, it's not true.
by thomasrapp
Thu Nov 29, 2018 11:05 am
Forum: Platform: Classic
Topic: OS3.1.4 ROM problem with uae4arm on Raspberry Pi
Replies: 1
Views: 1275

Re: OS3.1.4 ROM problem with uae4arm on Raspberry Pi

You better send this question to the uae4arm support because it surely does not have anything to do with Kick 3.1.4. If uae4arm is similar to WinUAE, then it tries to identify known ROM files by their CRC checksum. Of course the new ROM is not yet known. In WinUAE this manifests so that it does not ...
by thomasrapp
Sat Nov 24, 2018 9:57 am
Forum: General Developer Support
Topic: [Newbie] Hello... I am lost.
Replies: 8
Views: 3110

Re: [Newbie] Hello... I am lost.

Where does IExec come from? If you run without startup code, the system provides IExec to you. Alternatively you can read ExecBase from address 4 like in the old days and read IExec from ExecBase. If you run with startup code, you don't need to care. The startup code provides an external symbol IEx...
by thomasrapp
Sun Nov 11, 2018 9:38 am
Forum: Platform: Classic
Topic: No large hd partition with 3.1.4
Replies: 5
Views: 2176

Re: No large hd partition with 3.1.4

You should read the docs. There is a lot of information in the FAQs.
by thomasrapp
Sat Nov 10, 2018 6:43 pm
Forum: Platform: Classic
Topic: No large hd partition with 3.1.4
Replies: 5
Views: 2176

Re: No large hd partition with 3.1.4

There are new tooltypes for HDToolbox which let you override certain limits.

Set LIMIT_4GBYTE to OFF or FALSE to remove the white bar at 4GB.

Also enable the "Direct SCSI Transfer" checkbox in the advanced options.
by thomasrapp
Sat Oct 20, 2018 10:36 pm
Forum: Platform: Classic
Topic: Startup-Sequence boot speedup
Replies: 5
Views: 2243

Re: Startup-Sequence boot speedup

nbache wrote:Maybe because MakeDir only has to be loaded once?
Maybe you should look at the code before you suggest something?

Old: C:MakeDir RAM:T RAM:Clipboards RAM:ENV RAM:ENV/Sys
New: C:MakeDir RAM:T RAM:Clipboards RAM:ENV/Sys ALL

In both cases MakeDir is loaded only once.
by thomasrapp
Sat Oct 20, 2018 8:58 pm
Forum: Platform: Classic
Topic: Startup-Sequence boot speedup
Replies: 5
Views: 2243

Re: Startup-Sequence boot speedup

It shortens the command line but how does it speed up the processing? It rather slows it down. The directories have to be created one by one anyway. With your command line it first has to recognise that ram:env does not yet exist. So it's at least one DOS call more than with all sub-directories spec...
by thomasrapp
Tue Oct 09, 2018 10:01 pm
Forum: General AmigaOS
Topic: 8GB partition format FFS v46 AmigaOS3.1.4 genuine A2000
Replies: 3
Views: 2132

Re: 8GB partition format FFS v46 AmigaOS3.1.4 genuine A2000

All versions of FFS have the issue that they need a lot of RAM to build the bitmap. As a rule of thumb you need ca. 1 MB of memory per GB partition size.

What's new with 3.1.4 is that it actually tells you what the reason is instead of just sitting there with an unvalidated volume.
by thomasrapp
Wed Oct 03, 2018 10:55 am
Forum: Platform: Classic
Topic: Os 3.1.4 issues (ffs or pfs3/Loadmodule)
Replies: 6
Views: 2847

Re: Os 3.1.4 issues (ffs or pfs3/Loadmodule)

This is not a new issue, it has always been like this with all version of FFS.
by thomasrapp
Wed Oct 03, 2018 9:03 am
Forum: Platform: Classic
Topic: Os 3.1.4 issues (ffs or pfs3/Loadmodule)
Replies: 6
Views: 2847

Re: Os 3.1.4 issues (ffs or pfs3/Loadmodule)

IMHO it's more likely lack of RAM. FFS is a bit memory-hungry with large partitions. As a rule of thumb you need ca. 1 MB of RAM per GB of partition size to validate a FFS partition. So in your case it just fails to create the bitmap for the big partitions and they stay in "validating" sta...