Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8330 → Rev 8331

/contrib/other/uarm/cpu.h
File deleted
Property changes:
Deleted: svn:executable
-*
\ No newline at end of property
/contrib/other/uarm/Makefile
9,7 → 9,13
INCLUDES = -I $(SDK_DIR)/sources/newlib/libc/include
LIBPATH = -L $(SDK_DIR)/lib -L /home/autobuild/tools/win32/mingw32/lib
 
SRC := $(notdir $(wildcard *.c))
 
# Only selected
SRC = RAM.c icache.c MMU.c pxa255_PwrClk.c pxa255_IC.c pxa255_GPIO.c callout_RAM.c rt.c pxa255_RTC.c SoC.c pxa255_UART.c pxa255_TIMR.c mem.c dcache.c pxa255_LCD.c cp15.c pxa255_DMA.c math64.c CPU.c main_pc.c pxa255_DSP.c
 
# All .c files
# SRC = $(notdir $(wildcard *.c))
 
OBJECTS = $(patsubst %.c, %.o, $(SRC))
 
default: $(patsubst %.c,%.o,$(SRC))
18,3 → 24,6
 
%.o : %.c Makefile $(SRC)
$(CC) $(CFLAGS) $(INCLUDES) -o $@ $<
 
clean:
rm *.o
/contrib/other/uarm/main_pc.c
176,8 → 176,8
int gdbPort = 0;
if(argc != 3 && argc != 2){
fprintf(stderr,"usage: %s path_to_disk [gdbPort]\n", argv[0]);
return -1;
fprintf(stdout,"usage: %s path_to_disk [gdbPort]\n", argv[0]);
return 0;
}
//setup the terminal
/contrib/other/uarm/pxa255_DMA.h
2,7 → 2,7
#define _PXA255_DMA_H_
 
#include "mem.h"
#include "cpu.h"
#include "CPU.h"
#include "pxa255_IC.h"
 
/*
/contrib/other/uarm/pxa255_DSP.h
2,7 → 2,7
#define _PXA255_DSP_H_
 
#include "mem.h"
#include "cpu.h"
#include "CPU.h"
 
 
 
/contrib/other/uarm/pxa255_GPIO.h
2,7 → 2,7
#define _PXA255_GPIO_H_
 
#include "mem.h"
#include "cpu.h"
#include "CPU.h"
#include "pxa255_IC.h"
 
/*
/contrib/other/uarm/pxa255_LCD.h
2,7 → 2,7
#define _PXA255_LCD_H_
 
#include "mem.h"
#include "cpu.h"
#include "CPU.h"
#include "pxa255_IC.h"
 
#ifndef EMBEDDED
/contrib/other/uarm/pxa255_PwrClk.h
2,7 → 2,7
#define _PXA255_PWR_CLK_H_
 
#include "mem.h"
#include "cpu.h"
#include "CPU.h"
 
 
 
/contrib/other/uarm/pxa255_RTC.h
2,7 → 2,7
#define _PXA255_RTC_H_
 
#include "mem.h"
#include "cpu.h"
#include "CPU.h"
#include "pxa255_IC.h"
 
 
/contrib/other/uarm/pxa255_TIMR.h
2,7 → 2,7
#define _PXA255_TIMR_H_
 
#include "mem.h"
#include "cpu.h"
#include "CPU.h"
#include "pxa255_IC.h"
 
 
/contrib/other/uarm/pxa255_UART.h
2,7 → 2,7
#define _PXA255_UART_H_
 
#include "mem.h"
#include "cpu.h"
#include "CPU.h"
#include "pxa255_IC.h"