So.
1
Name:
Anonymous
2009-06-04 11:20
What's the point of segmented memory addressing?
2
Name:
Anonymous
2009-06-04 11:24
I'd argue that the main point oSIGSEGV
3
Name:
Anonymous
2009-06-04 11:45
That's a good question that has always been in the back of my mind since programming in 386 and 486 assembly.
4
Name:
Anonymous
2009-06-04 12:03
I find it a waste of time, just like OO design. A good programmer doesn't need that kind of protection. It just slows things down
5
Name:
Anonymous
2009-06-04 12:04
>>4
Disregard that, i suck cocks.
6
Name:
Anonymous
2009-06-04 12:25
It's so you can access more than 65KB of memory, when you're using 16-bit pointers.
It can also be used to implement virtual memory.
7
Name:
Peter Howard Bauss
2009-06-04 13:27
It's just technical mumbo jumbo. We don't need it in our final product.
I reassign 80% of your budget to marketting .
8
Name:
Anonymous
2009-06-04 13:54
9
Name:
Anonymous
2009-06-04 15:05
It allows you to convert a big process into smaller segments so it can fit into the a fragmented memory.
10
Name:
Anonymous
2009-06-04 16:09
Security, too. Don't fucking want any program you write to have access to kernel memory space. Plus other stuff about stack/text/bss/heap spaces. IT JUST IS OKAY
12
Name:
Anonymous
2011-02-03 0:33