ATMEGA328 DIP - All I/O pins have internall pull up/pull down resistors?

I have read

And i just want to bee 100% shure...
If i user
pins 6 + 11-14 for digital inputs
i can enable pull up/ pull down resistors for this pins, and i dont need external pull up/down resistors?

Thanx!

Forget "pull-downs" essentially no microprocessor ever has those; they are not useful for anything.

Yes, all digital I/O pins have an internal pull-up function if set as an input but written HIGH.

Paul__B:
Yes, all digital I/O pins have an internal pull-up function if set as an input but written HIGH.

Thank you!

Several ways to turn them on:
pinMode (pinX, INPUT_PULLUP);

or
pinMode (pinX, INPUT);
digitalWrite (pinX, HIGH); // turn on internal pullup

if set to an Input, then
digitalWrite (pinX, LOW); // turns off internal pullup

and as Paul indicated, there are no pulldown resistors.

essentially no microprocessor ever has [pulldowns]

Actually, a lot of the ARM micros have configurable pulldowns, as do the Xmegas.

Presumably, as well as pull-ups?

"Stay on target (topic) Red Leader" - no pulldowns on uCs used in Arduino boards.