Technical Support
On-Line Manuals
µVision User's Guide
C51, C251, C166 Development Tools
*** Error E182 Unaligned start address.
Unaligned start address.
Start address, for example of an SBC call, is unaligned.
The specified start address is not compliant with the specified alignment.
Specify the start address taking into account the alignment.
// Disable SW breakpoint configurations for range 0x1 -> 0xFFFF SBC 0x1, 0xFFFF, 0, 4 // => E182: unaligned start address
// Solution: start address must be compliant with alignment of 4 Bytes, so be a multiple of 4 SBC 0x0, 0xFFFF, 0, 4 // or SBC 0x4, 0xFFFF, 0, 4
Cookie Settings | Terms of Use | Privacy | Accessibility | Trademarks | Contact Us | Feedback
Copyright © 2005-2019 Arm Limited (or its affiliates). All rights reserved.
This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.
Change Settings
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers of your data.