Skip to content

XMKDIR (mkdir)

ID primitive : $4B

Description

Create a folder. But it does not support absolute path for instance. It can only create path in the current path.

Input

A and Y : ptr of the string

Output

Return #ENODEV if the device can't be mount

Usage

    .include "telestrat.inc"

    lda #<str
    ldy #>str
    ldx #$00
    BRK_TELEMON XMKDIR
    rts
str:
    .asciiz "myfolder"

See mkdir macro from orix-sdk to use it


Last update: 2024-02-15