Welcome, Guest. Please login or register.

Author Topic: FBlit errors  (Read 3759 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline Franko

  • Hero Member
  • *****
  • Join Date: Jun 2010
  • Posts: 5707
    • Show all replies
Re: FBlit errors
« on: May 28, 2011, 08:33:47 PM »
Quote from: swift240;640902
Ok I downloaded FBlit put it into C: along with fblitgui and fblit.librsary into libs as per install insturctions

just before binddrivers its like this:-

C:FBlit
C:Binddrivers

And when I reboot I get this error on screen FBlit is not executable

I have done exactly as told but this error wont go away.

What am I doing wrong here?

TIA.

Mike.

Are you sure you've un-archived it properly!!!

Make sure the file in C: called FBlit has the "e" executable flag set... :)

Here is an example of my OS 3.5 StartUp-Sequence to give you an idea of where to place FBlit in your StartUp-Sequence... :)

Code: [Select]
; $VER: Startup-Sequence_060+Blizkick 1.0 (31.08.06)
; Startup-Sequence for hard drive systems

C:+C/VInfo        ;My Virus Checker Prog
C:+C/SetPattern         ;Select Backdrop Picture (F1-F10)
;-----------------------------------------------------------------------------
; Remove OS 4.0 Partitions
;-----------------------------------------------------------------------------
C:Assign <>NIL: OS0: Dismount
C:Assign <>NIL: OS1: Dismount
C:Assign <>NIL: OS2: Dismount
C:Assign <>NIL: OS3: Dismount
C:Assign <>NIL: OS4: Dismount
;-----------------------------------------------------------------------------
; Create Vital OS Dirs
;-----------------------------------------------------------------------------
C:MakeDir RAM:T RAM:Clipboards RAM:ENV RAM:ENV/Sys
C:Copy >NIL: ENVARC: RAM:ENV ALL NOREQ

Resident >NIL: C:Assign PURE
Resident >NIL: C:Execute PURE
;-----------------------------------------------------------------------------
; Create Nessesary Assigns
;-----------------------------------------------------------------------------
Assign >NIL: ENV: RAM:ENV

Assign >NIL: T: RAM:T
Assign >NIL: CLIPS: RAM:Clipboards

Assign >NIL: REXX: S:
Assign >NIL: PRINTERS: DEVS:Printers
Assign >NIL: KEYMAPS: DEVS:Keymaps
Assign >NIL: LOCALE: SYS:Locale
Assign >NIL: LIBS: SYS:Classes ADD
Assign >NIL: HELP: LOCALE:Help DEFER
Assign >NIL: Prefs: SYS:Prefs

Assign >NIL: C: SYS:C/+C ADD
Assign >NIL: Devs: SYS:Devs/+Devs ADD
Assign >NIL: L: SYS:L/+L ADD
Assign >NIL: Libs: SYS:Libs/+Libs ADD
Assign >NIL: Prefs: SYS:Prefs/+Prefs ADD

Path >NIL: RAM: C: SYS:Utilities SYS:Rexxc SYS:System S: SYS:Prefs SYS:WBStartup SYS:Tools SYS:Tools/Commodities add

Path >NIL: C:+C Devs:+Devs L:+L Libs:+Libs Prefs:+Prefs SYS:System/+System SYS:Tools/+Tools SYS:Utilities/+Utilities add
;-----------------------------------------------------------------------------
; StartUp Any System Patches
;-----------------------------------------------------------------------------
C:SetPatch <>NIL: SKIPROMUPDATES QUIET ;Standard Amiga Patch
C:+C/PatchControl.V2.3        ;PatchControl (Controls Any Added Patches)
C:+C/CMQ060_Move16
C:+C/BlazeWCP           ;Patches Certain Blitter Routine
C:+C/FBlit           ;FastBlit Patch (Speeds Up Blitter Routines)
C:+C/FText           ;Patch For Faster Text Output
C:+C/MCP          ;MCP (Multiple Patches)
RUN <>NIL: C:+C/TitleShadow      ;Patch (Creates Window Title Shadows)
;-----------------------------------------------------------------------------
; BLIZZARD 060/PPC RemMap Rom Stuff
;-----------------------------------------------------------------------------
S:Bliz.PPC           ;BlizKick Remap ROM 060/PPC
;-----------------------------------------------------------------------------
; Fast ATA3 Stuff
;-----------------------------------------------------------------------------
FailAt 10

C:+C/CheckLMB           ;Check For Left Mouse Button

IF WARN              ;If Pressed - Run ATA3 Prefs
  SYS:Prefs/+Prefs/ATA3.prefs
ENDIF

C:ATA3.driver NOPART QUIET    ;Start ATA3 Driver
C:Stack 8192
C:ATA3SetSplit          ;Make Primary Slave NOSPLIT
;-----------------------------------------------------------------------------
; Protect From Writing To These Partitions
;-----------------------------------------------------------------------------
C:Lock <>NIL: Workbench: ON
C:Lock <>NIL: Store: ON
;C:Lock <>NIL: DH2: ON
;-----------------------------------------------------------------------------
; Usual Startup Stuff
;-----------------------------------------------------------------------------
C:Version >NIL:
C:AddBuffers >NIL: DF0: 15
FailAt 21

BindDrivers
C:Mount >NIL: DEVS:DOSDrivers/~(#?.info)

IF EXISTS DEVS:Monitors
  IF EXISTS DEVS:Monitors/VGAOnly
    DEVS:Monitors/VGAOnly
  EndIF

  C:List >NIL: DEVS:Monitors/~(#?.info|VGAOnly) TO T:M LFORMAT &quot;DEVS:Monitors/%s&quot;
  Execute T:M
  C:Delete >NIL: T:M
EndIF

SetEnv Language &quot;english&quot;
SetEnv Workbench $Workbench
SetEnv Kickstart $Kickstart
UnSet Workbench
UnSet Kickstart

C:AddDataTypes REFRESH QUIET
C:ConClip

C:+C/FPprefs            ;FullPalette (Sets Up & Locks WB Colours)

IF EXISTS S:User-Startup
    Execute S:User-Startup
EndIF

C:IPrefs

Run >NIL: C:+C/Birdie ? <ENV:Birdie.Prefs ;Birdie (Window Borders Patch)

Resident Execute REMOVE
Resident Assign REMOVE

C:LoadWB -DEBUG

Avail <>NIL: FLUSH

EndCLI >NIL:

LAB END
Echo &quot;You Wanted to Stop Here&quot;

If you want to send me a PM with an email address and I'll send you my FBlit configuration file to help get you started... :)