But i have a fucking problem

How to make a scd iso or an overlay with mkit ???
I'am using mkit ver 1.51, and pceas.exe -scd toto.asm don't work (can not find cdstart.asm).
Someone can help me ???

this is included by startup.asmMooZ wrote:I check pceas includes and cdstart.asm is nowhere to be found. Same thing with pceas source.
Code: Select all
;
; STARTUP.ASM - MagicKit standard startup code
;
.if (CDROM)
.include "cdstart.asm" ; CD-ROM
.else
.include "standard.inc" ; HUCARD
.ifdef HUC
.include "huc.inc" ; HUC
.include "huc_opt.inc"
.endif
; ----
; setup flexible boundaries for startup code
; and user program's "main".
;
START_BANK .equ 0
.ifdef HUC
CONST_BANK .equ START_BANK+1
FONT_BANK .equ START_BANK+2
DATA_BANK .equ START_BANK+3
.else
MAIN_BANK .equ START_BANK+1
.endif
; ----
; system variables
;
How ???MooZ wrote:By the way, can you check if the CDROM value is set to SUPER_CD in pceas ?
Code: Select all
;
; STARTUP.ASM - MagicKit standard startup code
;
; first, set MOUSE to default on:
;
SUPPORT_MOUSE .equ 1
.list
.ifdef HUC
.include "huc.inc" ; HUC
.include "huc_opt.inc"
.endif ; HUC
.include "standard.inc" ; HUCARD
; ----
; setup flexible boundaries for startup code
; and user program's "main".
;
START_BANK .equ 0
Lol ,j'ai pissé dans mon frocMooZ wrote:OK... As we say "C'est la merde John!"
Code: Select all
;
; STARTUP.ASM - MagicKit standard startup code
;
; first, set MOUSE to default on:
;
SUPPORT_MOUSE .equ 1
.list
.ifdef HUC
.include "huc.inc" ; HUC
.include "huc_opt.inc"
.endif ; HUC
.include "standard.inc" ; HUCARD
; ----
; setup flexible boundaries for startup code
; and user program's "main".
;
START_BANK .equ 0
thanks, but pceas has no extension (ex .exe), and don't work if i rename it in pceas.exe.MooZ wrote: Here's the download link : http://blockos.untergrund.net/data/pce/huc_03222009.zip
It may not the most up to date version. I may check with zeograd/dshadoff and all the other huc/pceas dev if another release is planned.