nuttx/boards/risc-v/qemu-rv/rv-virt/scripts/memory.ld
Ville Juven 1f928b2338 qemu-rv: Add test target pnsh64 for BUILD_PROTECTED
This adds BUILD_PROTECTED target for rv-virt (rv-virt:pnsh64).
2024-08-02 20:29:11 +08:00

29 lines
1.3 KiB
Plaintext

/****************************************************************************
* boards/risc-v/qemu-rv/rv-virt/scripts/memory.ld
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
MEMORY
{
kflash (rx) : ORIGIN = 0x80000000, LENGTH = 2M /* w/ cache */
ksram (rx) : ORIGIN = 0x80200000, LENGTH = 2M /* w/ cache */
uflash (rx) : ORIGIN = 0x80400000, LENGTH = 4M /* w/ cache */
usram (rwx) : ORIGIN = 0x80800000, LENGTH = 4M /* w/ cache */
}