diff --git a/src/components/DiskInfo.vue b/src/components/DiskInfo.vue index 9bfd6b4..8ed9c24 100644 --- a/src/components/DiskInfo.vue +++ b/src/components/DiskInfo.vue @@ -7,10 +7,16 @@ const { data = new ArrayBuffer(0) } = defineProps<{ data: ArrayBuffer }>() const floppyDisk = computed(() => { return new FloppyDisk(data) }) + +const fileListing = computed(() => { + return floppyDisk.value.buildFileListing() +})