* Do not jump to location $FC0002 -- the start of the ROM under 1.3 -- as part of performing a system RESET. The 2.04 Kickstart ROM has a temporary compatibility hack called "Kickety-Split" which is a redirecting jump at $FC0002. This hack does not appear on the A3000 ROM and due to space considerations will not appear on future machines. * Everything has moved. * The Supervisor stack is not in the same place as it was under 1.3. This has caused problems for some games that completely take over the Amiga. If your program goes into supervisor mode, you must either respect allocated memory or provide your own Supervisor stack when taking over the machine. * execbase is moved to expansion memory if possible. before, execbase would only end up in one of two fixed locations. Now, ColdCapture may be called after expansion memory has been configured. * Exception/Interrupt vectors may move. This means the 68010 and above Vector Base Register (VBR) may contain a non-zero value. Poking assumed low memory vector addresses may have no effect. You must read the VBR on 68010 and above to find the base. * No longer tolerant of wild forbid() counts. under 1.3, sometimes this bug could go unnoticed. Make sure that all Forbid()s are matched with one and only one permit() (and vice versa). * When an Exec device gets an iorequest, it must validate io_command. If the io_Command is 0 or out of range, the device must return ioerr_nocmd and take no other action. the filesystem now sends new commands and expects older devices to properly ignore them. * A fix to task-switching in Release 2 allows a busy task to properly regain the processor after an interrupt until either its quantum (4 vertical blanks) is up or a higher priority task preempts it. This can dramatically change the behavior of multitask programs where one task busyloops while another same-priority task wait()s. see "task switching" in the "additional information" section below.