Run two different overlay in a single logic

Hii, I am trying to use both base overlay and my designed overlay in the same project. But I feel both overlay calling is providing me error. Is there any way to use both overlay?
Thanks

2 posts were split to a new topic: Does PYNQ support floorplan masking (moved)

If you change overlay you change the whole design. If you need some functionality, you need to keep switching between Overlays.

i.e. call this each time before you need an overlay.
ol_x = Overlay(bitfile_x)

There will be some time to program each overlay. You would be better creating a new combined overlay if you can.

Cathal