From 1cf536bfa97b37c2bda059d6f9b778af4518230a Mon Sep 17 00:00:00 2001 From: Laurent Vivier Date: Fri, 3 Dec 2004 00:23:49 +0000 Subject: [PATCH] first version, data for SCSI container --- second/container.S | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 second/container.S diff --git a/second/container.S b/second/container.S new file mode 100644 index 0000000..d041abf --- /dev/null +++ b/second/container.S @@ -0,0 +1,18 @@ +/* + * + * (c) 2004 Laurent Vivier + * + */ + +#define SCSI_MAX_BLOCKS 128 + + .section .rodata + + .align 4 + .global scsi_container + +scsi_container: +_unit_id: .short 0 +_block_size: .short 0 +_max_blocks: .long SCSI_MAX_BLOCKS +_blocks: .fill SCSI_MAX_BLOCKS * 6, 0