mirror of
https://github.com/cc65/cc65.git
synced 2025-04-04 06:29:41 +00:00
Fixed a bug
git-svn-id: svn://svn.cc65.org/cc65/trunk@997 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
93c80bc5d5
commit
9f3af1c09d
@ -790,7 +790,7 @@ Or, to access a struct member of a static variable:
|
||||
unsigned char color;
|
||||
} pixel_t;
|
||||
static pixel_t pixel;
|
||||
__asm__ ("ldy #%b", offsetof(pixel, color));
|
||||
__asm__ ("ldy #%b", offsetof(pixel_t, color));
|
||||
__asm__ ("lda %v,y", pixel);
|
||||
</verb></tscreen>
|
||||
<p>
|
||||
|
Loading…
x
Reference in New Issue
Block a user