mirror of https://github.com/YosysHQ/picorv32.git
Cleanup whitespaces
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
This commit is contained in:
parent
409d0dfd67
commit
9129d18bf5
|
@ -77,7 +77,7 @@ int _fstat(int file, struct stat *st)
|
|||
|
||||
void *_sbrk(ptrdiff_t incr)
|
||||
{
|
||||
extern unsigned char _end[]; // Defined by linker
|
||||
extern unsigned char _end[]; // Defined by linker
|
||||
static unsigned long heap_end;
|
||||
|
||||
if (heap_end == 0)
|
||||
|
|
|
@ -59,9 +59,9 @@ SECTIONS
|
|||
.gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
|
||||
.exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
|
||||
/* Thread Local Storage sections */
|
||||
.tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
|
||||
.tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
|
||||
.preinit_array :
|
||||
.tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
|
||||
.tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
|
||||
.preinit_array :
|
||||
{
|
||||
PROVIDE_HIDDEN (__preinit_array_start = .);
|
||||
KEEP (*(.preinit_array))
|
||||
|
|
|
@ -46,7 +46,7 @@ module spiflash (
|
|||
);
|
||||
localparam verbose = 0;
|
||||
localparam integer latency = 8;
|
||||
|
||||
|
||||
reg [7:0] buffer;
|
||||
integer bitcount = 0;
|
||||
integer bytecount = 0;
|
||||
|
|
|
@ -77,7 +77,7 @@ int _fstat(int file, struct stat *st)
|
|||
|
||||
void *_sbrk(ptrdiff_t incr)
|
||||
{
|
||||
extern unsigned char _end[]; // Defined by linker
|
||||
extern unsigned char _end[]; // Defined by linker
|
||||
static unsigned long heap_end;
|
||||
|
||||
if (heap_end == 0)
|
||||
|
|
|
@ -77,7 +77,7 @@ int _fstat(int file, struct stat *st)
|
|||
|
||||
void *_sbrk(ptrdiff_t incr)
|
||||
{
|
||||
extern unsigned char _end[]; // Defined by linker
|
||||
extern unsigned char _end[]; // Defined by linker
|
||||
static unsigned long heap_end;
|
||||
|
||||
if (heap_end == 0)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
int x1 = 1000;
|
||||
int x2 = 2000;
|
||||
|
||||
void main()
|
||||
void main()
|
||||
{
|
||||
int z;
|
||||
x1 = 50;
|
||||
|
|
|
@ -77,7 +77,7 @@ int _fstat(int file, struct stat *st)
|
|||
|
||||
void *_sbrk(ptrdiff_t incr)
|
||||
{
|
||||
extern unsigned char _end[]; // Defined by linker
|
||||
extern unsigned char _end[]; // Defined by linker
|
||||
static unsigned long heap_end;
|
||||
|
||||
if (heap_end == 0)
|
||||
|
|
Loading…
Reference in New Issue