Tagged Questions
The nor tag has no wiki summary.
4
votes
1answer
305 views
Executing code that is preloaded in flash NOR
I'm building a uClinux system to run on an NXP LPC2478. The chip has 512k onboard fast flash from which it can directly execute code. I want to load and run a user app out of regular external SDRAM. ...
1
vote
2answers
116 views
Besides AND/OR/NOT, what's the point of the other logical operators in programming?
I've been programming nearly all of my life (around 20+ years), and I don't think I can remember a single time when I was looking at a if-statement and think "Hmmm, this would be a good time to use ...
1
vote
1answer
124 views
Why do my MIPS crosscompiler works like this for NOT operation?
I setup my crosscompiler for making MIPS instructions.
And it compiles C code well.
but I found a weird thing for NOT operations.
if i make code like
int a;
func(!a);
and i studied MIPS ...
0
votes
1answer
428 views
Database EAV model, record listing as per search
I am building a dynamic application.
I have three tables : ( EAV model style)
Items ( ItemId, ItemName)
Fields (FieldId, FieldName)
Field Values ( ItemID, FieldId, Value)
Can you tell me how ...