WO1997024656A1 - Method and apparatus for providing an interface between a system and a peripheral device - Google Patents

Method and apparatus for providing an interface between a system and a peripheral device Download PDF

Info

Publication number
WO1997024656A1
WO1997024656A1 PCT/US1996/020809 US9620809W WO9724656A1 WO 1997024656 A1 WO1997024656 A1 WO 1997024656A1 US 9620809 W US9620809 W US 9620809W WO 9724656 A1 WO9724656 A1 WO 9724656A1
Authority
WO
WIPO (PCT)
Prior art keywords
peripheral device
code
memory
driver
flash memory
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Ceased
Application number
PCT/US1996/020809
Other languages
English (en)
French (fr)
Inventor
Clark S. Thurlo
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Intel Corp
Original Assignee
Intel Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Intel Corp filed Critical Intel Corp
Priority to AU15684/97A priority Critical patent/AU1568497A/en
Publication of WO1997024656A1 publication Critical patent/WO1997024656A1/en
Anticipated expiration legal-status Critical
Ceased legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/4401Bootstrapping
    • G06F9/4411Configuring for operating with peripheral devices; Loading of device drivers
    • G06F9/4413Plug-and-play [PnP]
    • G06F9/4415Self describing peripheral devices
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F13/00Interconnection of, or transfer of information or other signals between, memories, input/output devices or central processing units
    • G06F13/10Program control for peripheral devices
    • G06F13/102Program control for peripheral devices where the program performs an interfacing function, e.g. device driver

Definitions

  • the present invention relates to peripheral devices of a computer system and more particularly to a method and apparatus for providing a software interface between a system and a peripheral device.
  • a typical computer system comprises one or more processors, control devices, memory, and input/output devices along with the necessary interconnects that allow these devices to communicate with one another.
  • a processor includes, for example, a microprocessor, microcontroller, or other device that is capable of performing mathematical computations.
  • a processor is commonly considered to be the "brain" of a computer system, while the memory and control devices support the processor by providing information storage and organizing the flow of information, respectively, within the system.
  • a peripheral device is typically a user-installed, optional device that adds additional performance capability to the basic computer system.
  • a disk drive may be thought of as a peripheral device.
  • a disk drive supplements a basic computer system by providing additional memory and a means for long-term storage of information.
  • a modem is a peripheral device that supplements a basic computer system by providing a means for communicating information to a remote location via telephone lines.
  • Basic input and output devices such as a keyboard and a display screen, are examples of other peripheral devices.
  • peripheral device Once a peripheral device is physically coupled to a computer system, generally via an electrical socket that accommodates easy coupling and decoupling, the processor, memory, and other devices of the system gain access to the peripheral device through a series of interlinks called buses. Through these buses, various parts of the system are able to communicate with the peripheral device. This communication, also known as interfacing, involves the exchange of data from one device to another.
  • both the system and the peripheral device must be speaking the same interface language. This requires that the system be aware of certain parameters of the peripheral device. For example, where the peripheral device is a memory device used for data storage, the system needs to know the amount of data that can be stored in the device so that the system can allocate and more effectively manage the flow of data sent to (written) and taken (read) from the device. The system also needs to know the proper protocol for reading or writing data this data. As another example, if the peripheral device is a modem, the system needs to know the speed at which the modem transmits data, as well as the protocol for sending data to the modem for transmission, so that the system can download data to the modem in a manner in which the modem can accept it.
  • the software that provides the system with the necessary parameters and enables the system to interface with the peripheral device is called the peripheral device driver, or driver code, or, simply, driver.
  • the source code for a driver is typically written in a high-level language or the processor's assembly language, then compiled into an object code executable file.
  • This executable is stored on a floppy disk that accompanies the peripheral device, and a user installs the compiled driver as an executable in the memory of the computer system to which the peripheral device is to be coupled.
  • the driver may alternatively be stored in the peripheral device itself or come pre-loaded in the computer system in either the operating system or the BIOS. Thereafter, when the peripheral device is accessed, the system uses the executable to enable the interface.
  • Different drivers are associated with the same type of peripheral device, depending on the make, model, and configuration of the peripheral device, and the make, model, and configuration of the system for which the peripheral device is intended.
  • One reason for multiple drivers is that the executable driver code is compiled in a processor- specific manner. In other words, a peripheral device driver that has been compiled for one type of processor is virtually unreadable by another type of processor. Therefore, a peripheral device having driver code that has been compiled for a type "X" processor can only be used in a computer system comprising a type "X” processor. An essentially identical peripheral device having driver code that has been compiled for a type "Y” processor can only be used in a computer system comprising a type "Y” processor.
  • An object of the present invention is to provide a method for interfacing between a system and a peripheral device.
  • Another object of the present invention is to provide a method by which an interface between a system a peripheral device is processor- independent.
  • a peripheral device for use in interfacing with a system.
  • the peripheral device contains driver code stored in memory locations within the peripheral device.
  • the driver code is uncompiled, and, when read by a system to which the peripheral device is coupled, enables the system to interface with the peripheral device.
  • Figure 1 is a block diagram of a system to which peripheral devices are coupled.
  • Figure 2 is a sample of interpretive driver code.
  • a peripheral device is described along with a method by which driver code is provided that enables the peripheral device to interface with the system to which it is coupled.
  • the peripheral device contains its associated driver code stored in memory locations within the peripheral device.
  • the driver code is uncompiled, meaning that the driver code can be either source code or interpretive code.
  • the driver code is source code
  • the code is first read by the system to which the peripheral device is coupled, and is then stored in memory locations within the system.
  • the system contains an appropriate compiler for compiling the source code into an executable file, which is then executed by the system, thereby enabling the system to interface with the peripheral device.
  • the driver code is interpretive code
  • the code is first read by the system to which the peripheral device is coupled, and is then stored in memory locations within the system.
  • the system contains an appropriate interpreter for interpreting the source code, thereby enabling the system to interface with the peripheral device.
  • a peripheral device and method of providing an interface between the peripheral device and a system, will be described in more detail below.
  • FIG. 1 is a block diagram of a system 100 to which peripheral devices 106-108 have been coupled.
  • System 100 comprises an operating system driver interface 101 , which is coupled to an interpreter and driver administrator 102, which is coupled to three memory locations (or access thereto) 103-105. Each memory location 103, 104, and 105 interfaces with each of peripheral devices 106, 107, and 108 respectively.
  • Operating system driver interface 101 provides the interface between the commands initiated by the system user and the peripheral devices.
  • peripheral memory cards such as Personal Computer Memory Card International Association-compliant (PCMCIA) cards, PC or CardBus cards
  • the operating system driver interface comprises a file system/media manager and a card services interface.
  • the file system/media manager partitions and manages the memory media by, for example, providing for directory and subdirectory levels for a user, and associating each of these levels to memory locations.
  • the card services interface based on the memory location indicated by a read or write command initiated by the file system/media manager, determines which of a plurality of peripheral memory cards is being accessed, and passes the command along to the proper technology driver. The system then interfaces with the appropriate memory card through the associated driver to execute the command.
  • Peripheral device 106 is a fax-modem that is capable of converting data from system 100 into telephone signals for transmitting the data to a remote location. Fax-modem 106 is also capable of transmitting data received via a telephone signal back into the system. Therefore, fax-modem 106, in addition to being coupled to system 100, is also coupled to a telephone line (not shown).
  • Peripheral device 107 is flash memory that provides system 100 with non-volatile, flash memory for storage of data.
  • Peripheral device 108 is a video capture device that digitizes incoming images from a camera and provides the data associated with those images to system 100 for manipulation or storage.
  • system 100 is a desktop or mobile computer system, and peripheral devices 106 - 108 are compliant with the PCMCIA or CardBus standards. Many of the terms and operations mentioned herein may be found in a standard PCMCIA driver specification.
  • Each of peripheral devices 106 - 108 comprises memory locations large enough to store the driver code for the associated peripheral device.
  • memory of each of peripherals 106 - 108 is stored its associated driver as interpretive code, which is capable of being interpreted by an interpreter.
  • the system to which a peripheral device is coupled contains or has access to driver memory locations within the system.
  • the driver code stored in the memory of a peripheral device is read into the system by the driver administrator and stored in the appropriate driver memory location within the system.
  • the interpretive driver code is stored in protected regions of memory of the associated peripheral device.
  • a protected region of memory is a memory location from which the contents of the memory cannot be readily erased or written-over, making it difficult to corrupt the interpretive driver code stored in peripheral device memory through normal use and operation of the peripheral device.
  • System 100 before transferring the interpretive driver code of a peripheral device into system memory, must first be apprised of the basic information needed to load the driver code into driver memory locations 103 - 105. For example, the driver administrator must know where the driver code resides within the memory of a particular peripheral device. This basic information may be obtained either from predefined memory locations with the peripheral device, or via previously installed set-ups within the system. After the interpretive driver code has been read from the peripheral device and stored in system memory, communication with the peripheral device is primarily conducted in accordance with the software interface established by the driver.
  • interpretive driver code which may be the entire code stored in the peripheral device or some portion thereof, has been transferred from the peripheral device 106 - 108 to driver memory locations 103 - 105 within the system
  • the inte ⁇ reter in the int ⁇ reter/driver administrator 102 of the system interprets the code as needed to interface with the peripheral device.
  • Interpretive code is code that need not be compiled before executing it.
  • BASIC is one example of interpretive code. Interpretive languages are usually generic across various processors. So, for example, a driver written in BASIC for a system comprising processor "X” will also run on a system comprising processor "Y,” notwithstanding incompatibilities between processors "X” and "Y,” as long as a BASIC interpreter is provided in each system.
  • An interpreter which may be processor-dependent, is the tool through which an interpretive language is executed.
  • the peripheral devices coupled to a system contain source code rather than inte ⁇ retive code as the device driver software.
  • Source code before being executed, is typically compiled into an object code executable. Therefore, for this embodiment, the system contains (or has access to) a compiler.
  • the source code driver Upon transferring the source code driver from the peripheral device by reading it into driver memory locations of system memory, the source code is compiled into object code by the compiler, and is stored in system memory as an executable file. The system then executes the file as needed to interface with the peripheral device.
  • Source codes like inte ⁇ retive codes, are usually generic across various processors.
  • a source code driver written for a system comprising processor "X” will also run on a system comprising processor "Y,” notwithstanding incompatibilities between processors "X” and “Y,” as long as a compiler, which may be processor-dependent, is provided in each system.
  • a system comprising a digital camera, uses flash storage devices, or flash cards, as the film upon which digital images from the digital camera are stored.
  • each flash card contains its associated driver code stored in an inte ⁇ retive language in memory within the card.
  • the digital camera comprises an interpreter/driver administrator and memory.
  • the digital camera After a picture is taken, the digital camera stores the data associated with the picture into the flash card by calling on the operating system driver interface to write the data into the attached flash card.
  • the driver administrator reads the section of memory within the flash card containing the desired driver code related to write operations, and stores this code in memory within the camera.
  • the camera then proceeds to execute or run this code using the int ⁇ reter, thereby enabling an interface between the camera and the flash card, storing the data in the flash card.
  • the system is an audio recording device which stores digital audio signals in peripheral flash memory.
  • the system is a personal data assistant (PDA) or cellular phone which uses peripheral devices to perform functions such as storing or displaying data.
  • PDA personal data assistant
  • BASIC is one type of inte ⁇ retive language.
  • BASIC is a relatively extensive language, resulting in a substantially large interpreter to inte ⁇ ret the language and fairly high computational requirements.
  • a new interpretive language is developed, along with an associated inte ⁇ reter, which is optimized for the particular application for which the inte ⁇ retive driver code will be used.
  • Figure 2 is a sample of interpretive driver code that has been written in a new interpretive language that has been optimized for flash memory peripherals. Only the lines of code associated parameter settings and the write operation are shown here. A more complete interpretive driver code sequence would additionally include, for example, lines of code associated with the read and erase operations.
  • the first line of code of Figure 2 "PARAMETER_START” indicates that this is the section of the code that provides parameter information related to the parameters of the flash card.
  • WIDTH 08" indicates that this is a x8 card.
  • WRITE_START indicates that this is the section of the code that provides the protocol for executing a write operation to the flash card.
  • a write command is initiated by the operating system driver interface of the system, in response to, for example, a system user command.
  • the write command is directed to the interpreter/driver administrator in the form of a write request packet comprising 1) the request type (write in this case); 2) the number of bytes to be written (called “number_bytes” in Figure 2); 3) the destination address of the data (called “destination_address” in Figure 2 and refers to the flash card in this case); and 4) the source address of the data (called “source_address” in Figure 2 and usually refers to a buffer in system memory).
  • the interpreter/driver administrator In response to a write command, the interpreter/driver administrator, if it hasn't already done so, will load either the entire interpretive driver code or only the write portion of the code from the peripheral device into the appropriate driver memory location with the system. The interpreter/driver administrator then locates the "WRITE_START" line in the interpretive drive code within the system, and begins to execute what follows.
  • "OUTPUT destination_address + offset, write_command” instructs that the data or control commands following the "OUTPUT” command be sent to the flash card.
  • the destination address sent with the write request packet is offset by the "offset” variable (0 in the first iteration) and is sent a "write_command,” which is a flash card-specific command that indicates that the next write to that address contains data to be stored.
  • "OUTPUT destination_address + offset, source_address + offset” instructs that the data stored in the source address, offset by the "offset” variable, is to be stored at the destination address, also offset by the "offset” variable.
  • Card_status is flash card-dependent value that the flash card provides to the system to indicate whether or not the previous OUTPUT command to write data into the flash card executed properly.
  • Write_valid is also a flash card- dependent value that is equal to the value the flash card provides to indicate a successful write operation has taken place.
  • the interpreter determines if the counter has reached 100, and if so, the inte ⁇ reter is instructed to jump back up to the line labeled "BEGIN" so that the data can be rewritten.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Security & Cryptography (AREA)
  • Devices For Executing Special Programs (AREA)
PCT/US1996/020809 1995-12-29 1996-12-27 Method and apparatus for providing an interface between a system and a peripheral device Ceased WO1997024656A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU15684/97A AU1568497A (en) 1995-12-29 1996-12-27 Method and apparatus for providing an interface between a system and a peripheral device

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US08/580,808 US5835772A (en) 1995-12-29 1995-12-29 Method and apparatus for providing an interface between a system and a peripheral device
US08/580,808 1995-12-29

Publications (1)

Publication Number Publication Date
WO1997024656A1 true WO1997024656A1 (en) 1997-07-10

Family

ID=24322652

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1996/020809 Ceased WO1997024656A1 (en) 1995-12-29 1996-12-27 Method and apparatus for providing an interface between a system and a peripheral device

Country Status (4)

Country Link
US (1) US5835772A (https=)
AU (1) AU1568497A (https=)
TW (1) TW318227B (https=)
WO (1) WO1997024656A1 (https=)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2350913A (en) * 1999-06-10 2000-12-13 John Quentin Phillipps Combined memory and user input device
WO2010057526A1 (en) * 2008-11-19 2010-05-27 Nec Europe Ltd. Virtualization mediated system and method

Families Citing this family (24)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6430511B1 (en) 1999-01-21 2002-08-06 University Of South Carolina Molecular computer
ES2184066T3 (es) 1996-10-25 2003-04-01 Schlumberger Systems & Service Uso de un lenguaje de programacion de alto nivel con microcontrolador.
US6279069B1 (en) * 1996-12-26 2001-08-21 Intel Corporation Interface for flash EEPROM memory arrays
US6260102B1 (en) * 1996-12-26 2001-07-10 Intel Corporation Interface for flash EEPROM memory arrays
US6154788A (en) * 1997-04-25 2000-11-28 Simple Technology, Inc. Multi-function module incorporating flash memory having additional controller adapted to configure the data from the memory that is to be provided to the external source
US5973734A (en) 1997-07-09 1999-10-26 Flashpoint Technology, Inc. Method and apparatus for correcting aspect ratio in a camera graphical user interface
US6163816A (en) * 1997-08-29 2000-12-19 Flashpoint Technology, Inc. System and method for retrieving capability parameters in an electronic imaging device
JP2000020317A (ja) * 1998-07-07 2000-01-21 Minolta Co Ltd 情報処理システムのデバイス制御方法および情報処理システムのデバイスおよびソフトウェア記憶媒体
US6317141B1 (en) 1998-12-31 2001-11-13 Flashpoint Technology, Inc. Method and apparatus for editing heterogeneous media objects in a digital imaging device
US6762791B1 (en) 1999-02-16 2004-07-13 Robert W. Schuetzle Method for processing digital images
JP2001005622A (ja) * 1999-05-26 2001-01-12 Xerox Corp プリントレットシステム及び方法
JP3385613B2 (ja) * 1999-12-17 2003-03-10 日本電気株式会社 携帯電話用プリンタケーブル及び通信データの印刷方法
US20020108054A1 (en) * 2001-02-02 2002-08-08 Moore Christopher S. Solid-state memory device storing program code and methods for use therewith
US20020188938A1 (en) * 2001-06-11 2002-12-12 Dong Mimi Chu System and method for providing application software for a peripheral device
US20050041459A1 (en) * 2001-06-27 2005-02-24 Mcdonald Donald Wilson Interface for removable storage devices
US20030084257A1 (en) * 2001-10-30 2003-05-01 Mowery Keith R. Flash emulator
US20030196007A1 (en) * 2002-04-12 2003-10-16 Baron John M. Device-resident driver system and method
US20050097248A1 (en) * 2003-10-29 2005-05-05 Kelley Brian H. System and method for establishing a communication between a peripheral device and a wireless device
US20060069813A1 (en) * 2004-09-30 2006-03-30 International Business Machines Corporation Self-configuring peripheral interface system, peripheral device therefor and interface method
US9224145B1 (en) 2006-08-30 2015-12-29 Qurio Holdings, Inc. Venue based digital rights using capture device with digital watermarking capability
US7966355B2 (en) * 2007-02-13 2011-06-21 Modu Ltd. Interface for extending functionality of memory cards
US20090144046A1 (en) * 2007-09-28 2009-06-04 Rothman Michael A Method to encapsulate an option rom for operation in multiple firmware and platform architectures
TWI503841B (zh) * 2013-04-26 2015-10-11 Phison Electronics Corp 寫入方法、記憶體控制器與記憶體儲存裝置
CN104142895B (zh) * 2013-05-08 2017-05-17 群联电子股份有限公司 写入方法、存储器控制器与存储器储存装置

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5265218A (en) * 1992-05-19 1993-11-23 Sun Microsystems, Inc. Bus architecture for integrated data and video memory
US5319751A (en) * 1991-12-27 1994-06-07 Intel Corporation Device driver configuration in a computer system
US5504902A (en) * 1993-12-01 1996-04-02 Patriot Sensors And Controls Corporation Multi-language generation of control program for an industrial controller
US5519851A (en) * 1994-03-14 1996-05-21 Sun Microsystems, Inc. Portable PCMCIA interface for a host computer

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH08289241A (ja) * 1995-04-18 1996-11-01 Ricoh Co Ltd デジタル電子スチルカメラ

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5319751A (en) * 1991-12-27 1994-06-07 Intel Corporation Device driver configuration in a computer system
US5404494A (en) * 1991-12-27 1995-04-04 Intel Corporation System for copying device driver stub into allocated portion of system memory corresponding to receiving resource to enable device driver execution from resource memory
US5412798A (en) * 1991-12-27 1995-05-02 Intel Corporation System for enabling access to device driver residing in resource memory corresponding to coupled resource by allowing memory mapping to device driver to be executed
US5265218A (en) * 1992-05-19 1993-11-23 Sun Microsystems, Inc. Bus architecture for integrated data and video memory
US5504902A (en) * 1993-12-01 1996-04-02 Patriot Sensors And Controls Corporation Multi-language generation of control program for an industrial controller
US5519851A (en) * 1994-03-14 1996-05-21 Sun Microsystems, Inc. Portable PCMCIA interface for a host computer

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2350913A (en) * 1999-06-10 2000-12-13 John Quentin Phillipps Combined memory and user input device
GB2350913B (en) * 1999-06-10 2002-05-29 John Quentin Phillipps Combined memory and user input devive
WO2010057526A1 (en) * 2008-11-19 2010-05-27 Nec Europe Ltd. Virtualization mediated system and method

Also Published As

Publication number Publication date
AU1568497A (en) 1997-07-28
TW318227B (https=) 1997-10-21
US5835772A (en) 1998-11-10

Similar Documents

Publication Publication Date Title
US5835772A (en) Method and apparatus for providing an interface between a system and a peripheral device
US5546585A (en) Personal computer system with start-up capability from an external mass storage device
US5459867A (en) Kernels, description tables, and device drivers
US6718407B2 (en) Multiplexer selecting one of input/output data from a low pin count interface and a program information to update a firmware device from a communication interface
KR100924497B1 (ko) 비-휘발성 어플리케이션 및 화일 저장 디바이스로부터부팅시키기 위한 시스템 및 방법
EP1465067A2 (en) Operating system for a portable computer and method to load the same
KR20030084947A (ko) 유니버설 시리얼 버스를 기초한 pc 플래시 디스크의아키텍처
US5930818A (en) Information communication system which transmits main data and data for restoring the main data
JPH0792744B2 (ja) 多重レベル適用業務ソフトウェアをデータ処理装置にインストールする方法。
KR20030039598A (ko) 유에스비기반의 이동형 저장장치 및 그 제어방법
EP1209574A2 (en) USB computer memory drive
US20040049617A1 (en) Method of firmware update by USB interface
KR100725271B1 (ko) 복수개의 dma 채널을 갖는 usb-sd 저장 장치 및 그저장 방법
US20060253673A1 (en) Apparatus and method for permitting access to storage means
GB2438231A (en) Method of operating plug-in devices that are not initially recognised by their hosts, the devices being restarted and then run as a simulated memory device.
US8719498B2 (en) Data storage device and data providing method therein
CN101944034B (zh) 文件执行方法及系统
US20240160383A1 (en) Method for managing storage controllers, electronic device, and computer readable storage medium thereof
US12423082B2 (en) Method for managing storage controllers, electronic device, and computer readable storage medium thereof
KR20050108797A (ko) 유에스비를 이용한 홍보 장치
US8560824B2 (en) Methods and devices for decompressing and executing option memory for device in shadow memory of a computer system having a BIOS
KR100794345B1 (ko) 유엠에스 데이터 통신 기능을 갖는 이동통신 단말기 및 그데이터 전송 방법
KR20040100495A (ko) 매스 스토리지 클래스 인터페이스 규격의 대용량 저장장치 기능과 컨텐츠 보호 기능을 지원하는 휴대용 응용기기, 이를 구비한 매스 스토리지 클래스 인터페이스시스템, 및 그 방법
JP3456234B2 (ja) ターゲット装置
US20090240933A1 (en) Computer system architecture and operating method for the operating system thereof

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AL AM AT AT AU AZ BA BB BG BR BY CA CH CN CU CZ CZ DE DE DK DK EE EE ES FI FI GB GE HU IL IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MD MG MK MN MW MX NO NZ PL PT RO RU SD SE SG SI SK SK TJ TM TR TT UA UG US UZ VN AM AZ BY KG KZ MD RU TJ TM

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): KE LS MW SD SZ UG AT BE CH DE DK ES FI FR GB GR IE IT LU MC

DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
121 Ep: the epo has been informed by wipo that ep was designated in this application
NENP Non-entry into the national phase

Ref country code: JP

Ref document number: 97524581

Format of ref document f/p: F

REG Reference to national code

Ref country code: DE

Ref legal event code: 8642

122 Ep: pct application non-entry in european phase