diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-31 11:49:01 +0900 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-31 11:49:01 +0900 |
commit | 3a4e1f2bd59a5185e638a2552c64344d78e0f54f (patch) | |
tree | a25424f8b4264ab8c8485b5c086102061e885e4d /example-fs-bb48/sample.ld | |
parent | 421fd8019b31386c6e689753cf0a2ff35bd2af50 (diff) |
Cleanup of sys and its macro
Diffstat (limited to 'example-fs-bb48/sample.ld')
-rw-r--r-- | example-fs-bb48/sample.ld | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/example-fs-bb48/sample.ld b/example-fs-bb48/sample.ld index fa75271..bf24e5c 100644 --- a/example-fs-bb48/sample.ld +++ b/example-fs-bb48/sample.ld @@ -1,11 +1,11 @@ /* * MK27Z memory setup. */ -__main_stack_size__ = 0x0100; /* Exception handlers */ -__process0_stack_size__ = 0x0300; /* Main program */ -__process1_stack_size__ = 0x0200; /* first thread program */ -__process2_stack_size__ = 0x0100; /* second thread program */ -__process3_stack_size__ = 0x0200; /* third thread program */ +__main_stack_size__ = 0x0100; /* Idle+Exception handlers */ +__process0_stack_size__ = 0x0300; /* Main program */ +__process1_stack_size__ = 0x0200; /* first thread program */ +__process2_stack_size__ = 0x0100; /* second thread program */ +__process3_stack_size__ = 0x0200; /* third thread program */ MEMORY { |