From 5b5b6af723f57c6717ae10a14e997bb9a439be0f Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 22 Mar 2008 22:37:46 +0000 Subject: [PATCH] Do not call open/close_peripheraldevice. That ties in too closely to ZiLOG's psuedo-OS git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@742 42af7a65-404d-4744-a932-0658087f49c3 --- arch/z80/src/ez80/ez80_startup.asm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/arch/z80/src/ez80/ez80_startup.asm b/arch/z80/src/ez80/ez80_startup.asm index 09c46fc16ad..d3f5e6705e1 100644 --- a/arch/z80/src/ez80/ez80_startup.asm +++ b/arch/z80/src/ez80/ez80_startup.asm @@ -61,8 +61,6 @@ xref __len_code xref __low_code xref __low_romcode - xref __open_periphdevice - xref __close_periphdevice xref _os_start xdef _ez80_startup xdef _ez80_halt @@ -141,10 +139,6 @@ _ez80_datadone: ldir ; Copy the code section _ez80_codedone: - ; Initialize the peripheral devices - - call __open_periphdevice - ; Perform board-specific intialization call _up_lowinit @@ -155,7 +149,6 @@ _ez80_codedone: ; NuttX will never return, but just in case... - call __close_periphdevice _ez80_halt: halt ; We should never get here jp _ez80_halt